diff options
Diffstat (limited to 'mail-mta/nullmailer/files/remotes.sample-2.0')
-rw-r--r-- | mail-mta/nullmailer/files/remotes.sample-2.0 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mail-mta/nullmailer/files/remotes.sample-2.0 b/mail-mta/nullmailer/files/remotes.sample-2.0 new file mode 100644 index 000000000000..59535d691034 --- /dev/null +++ b/mail-mta/nullmailer/files/remotes.sample-2.0 @@ -0,0 +1,30 @@ +# Format is: HOST PROTOCOL [OPTIONS] +# HOST = IP or DNS +# PROTOCOL = smtp | qmtp +# OPTIONS = [port=NUMBER] [user] [pass] [starttls | ssl [insecure] ] +# +# Examples: +# A standard SMTP server: +# somesendmailserver.domain.com smtp +# +# A qmail server with QMQP setup: +# someqmailserver.domain.com qmqp +# +# A nonstandard SMTP server setup: +# someotherserver.domain.com smtp port=2525 +# +# SMTP server supporting AUTH PLAIN +# mailserver smtp user=<user> pass=<pass> +# +# SMTP server supporting AUTH LOGIN +# mailserver smtp user=<user> pass=<pass> auth-login +# +# SMTP server with smtps (legacy - use starttls instead) +# mailserver smtp user=<user> pass=<pass> port=465 ssl +# +# SMTP server on submission port with starttls +# mailserver smtp user=<user> pass=<pass> port=587 starttls +# +# SMTP server on submission port with starttls and self-signed certificate +# mailserver smtp user=<user> pass=<pass> port=587 starttls insecure + |