diff --git a/imap_filter/imap_filter.py b/imap_filter/imap_filter.py index 7b139d3..fe13f46 100644 --- a/imap_filter/imap_filter.py +++ b/imap_filter/imap_filter.py @@ -530,23 +530,6 @@ class ImapFilter: "--dummy","-n", is_flag=True, help="Don't do anything, just show what would be done." ) -@click.option('--imap-server', '-s', default='localhost', help='IMAP server') -@click.option( - '--imap-port', '-p', default=993, - type=click.IntRange(1, 65535), help='IMAP server port' -) -@click.option( - '--imap-user', '-u', required=True, - help='User name to use for the connection to the IMAP server' -) -@click.option( - '--imap-password', '-P', required=True, - help='Password to connect to the IMAP server. Warning! Use a configuration file to avoid revelaing your passwords.' -) -@click.option( - '--ssl', '-S', default=True, - help='Whether to use a secure connection or not.' -) @click.option( '--filters-file', '-F', required=True, help='JSON or YAML file containing a list of dictionaries with the filter rules.'