Remove unused options

This commit is contained in:
Antonio J. Delgado 2025-02-07 12:09:06 +02:00
parent 8d8dbd39d1
commit 1a56840e1d

View file

@ -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.'