email options: remove short options to avoid conflict
This commit is contained in:
parent
5bdfc8479d
commit
1cd9432e25
1 changed files with 11 additions and 11 deletions
|
@ -115,7 +115,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-H', '--smtp-host',
|
'--smtp-host',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_smtp_host",
|
dest="email_smtp_host",
|
||||||
|
@ -124,7 +124,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-P', '--smtp-port',
|
'--smtp-port',
|
||||||
action="store",
|
action="store",
|
||||||
type=int,
|
type=int,
|
||||||
dest="email_smtp_port",
|
dest="email_smtp_port",
|
||||||
|
@ -133,7 +133,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-S', '--smtp-ssl',
|
'--smtp-ssl',
|
||||||
action="store_true",
|
action="store_true",
|
||||||
dest="email_smtp_ssl",
|
dest="email_smtp_ssl",
|
||||||
help="Use SSL (default: %s)" % get_default_opt_value(config, default_config, 'smtp_ssl'),
|
help="Use SSL (default: %s)" % get_default_opt_value(config, default_config, 'smtp_ssl'),
|
||||||
|
@ -141,7 +141,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-T', '--smtp-tls',
|
'--smtp-tls',
|
||||||
action="store_true",
|
action="store_true",
|
||||||
dest="email_smtp_tls",
|
dest="email_smtp_tls",
|
||||||
help="Use TLS (default: %s)" % get_default_opt_value(config, default_config, 'smtp_tls'),
|
help="Use TLS (default: %s)" % get_default_opt_value(config, default_config, 'smtp_tls'),
|
||||||
|
@ -149,7 +149,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-u', '--smtp-user',
|
'--smtp-user',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_smtp_user",
|
dest="email_smtp_user",
|
||||||
|
@ -158,7 +158,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-p', '--smtp-password',
|
'--smtp-password',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_smtp_password",
|
dest="email_smtp_password",
|
||||||
|
@ -167,7 +167,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-D', '--smtp-debug',
|
'--smtp-debug',
|
||||||
action="store_true",
|
action="store_true",
|
||||||
dest="email_smtp_debug",
|
dest="email_smtp_debug",
|
||||||
help="Debug SMTP connection (default: %s)" % get_default_opt_value(config, default_config, 'smtp_debug'),
|
help="Debug SMTP connection (default: %s)" % get_default_opt_value(config, default_config, 'smtp_debug'),
|
||||||
|
@ -175,7 +175,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-e', '--email-encoding',
|
'--email-encoding',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_encoding",
|
dest="email_encoding",
|
||||||
|
@ -184,7 +184,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-f', '--sender-name',
|
'--sender-name',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_sender_name",
|
dest="email_sender_name",
|
||||||
|
@ -193,7 +193,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-F', '--sender-email',
|
'--sender-email',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_sender_email",
|
dest="email_sender_email",
|
||||||
|
@ -202,7 +202,7 @@ def add_email_opts(parser, config=None):
|
||||||
)
|
)
|
||||||
|
|
||||||
email_opts.add_argument(
|
email_opts.add_argument(
|
||||||
'-c', '--catch-all',
|
'--catch-all',
|
||||||
action="store",
|
action="store",
|
||||||
type=str,
|
type=str,
|
||||||
dest="email_catch_all",
|
dest="email_catch_all",
|
||||||
|
|
Loading…
Reference in a new issue