##-----------------------------------------------------------------------------
## msmtp.txt - fli4l configuration parameters                        V3.10.x
##
##        P L E A S E   R E A D   T H E   D O C U M E N T A T I O N ,
##                      S E E   S S M T P . T X T
##
##        B I T T E  U N B E D I N G T   D I E   D O K U M E N T A T I O N
##        L E S E N ,  S I E H E   S S M T P . T X T
##
## Creation:     2003-05-02    t_klingl
## Last Update:  2015-04-05    fli4l@dechristo.net
##
## Copyright (c) 2003 t_klingl
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##-----------------------------------------------------------------------------

#------------------------------------------------------------------------
# Optional package: msmtp
#------------------------------------------------------------------------
OPT_MSMTP='no'                                # if yes msmtp is activated

MSMTP_SPOOL_DIR='/data/spool/mail'            # directory files are stored before send,
                                              # should be located on a harddisk

MSMTP_SEND_AT_ONCE='yes'                      # deliver mails at once, "yes" or "no"

MSMTP_LOGFILE=''                              # where to store logfile
                                              # set to 'syslog' if you want to log to the system log
                                              # notice : msmtp-binary always logs to syslog !
                                              # leave empty for nor logging

MSMTP_SMTP_AUTH='no'                          # possible values (case sensitive):
                                              # 'no'         : no authentification required
                                              # 'pop'        : POP3-before-smtp
                                              # 'login'      : login
                                              # 'cram-md5'   : cram-md5
                                              # 'digest-md5'   : cram-md5

MSMTP_SMTP_FROM=''                            # mail address used for SMTP 'MAIL FROM'. if emtpy, USERNAME is used
                                              # use this if your smtp server requires a real mail address (containing '@')
                                              # but your username doesn't contain one (e.g. '123456')
                                              # and your mail address won't work as username

MSMTP_SMTP_USERNAME='test'                    # username for SMTP AUTH (required if your provider uses SMTP AUTH)
MSMTP_SMTP_PASSWORD='geheim'                  # password for SMTP AUTH
MSMTP_POP3_USERNAME='test'                    # username for POP3 login (required if your provider uses POP3-before-smtp)
MSMTP_POP3_PASSWORD='geheim'                  # password for POP3 login
                                              # password and username must only be provided if authentication is required

MSMTP_POP3_PORT='110'                         # POP3 port number, normally 110
MSMTP_POP3_SERVER='pop3.mydomain.de'          # POP3 server, can also be an IP address
                                              # only needed if MSMTP_SMTP_AUTH='pop'

MSMTP_SMTP_PORT='25'                          # SMTP port number, usually 25
MSMTP_SMTP_SERVER='smtp.mydomain.de'          # SMTP server, can also be an IP address

MSMTP_USE_STARTTLS='no'                       # method to encrypt communication between
                                              # opt_msmtp and your mta
                                              
MSMTP_USE_TLS='no'                            # alternativ encryption method

                                              # hint: you can choose only one encryption method
                                              
MSMTP_USE_TLS_CERT='no'                       # Use SSL/TLS certificate to authenticate smtp host
MSMTP_TLS_CERT='/path/to/file.pem'            # Use this RSA certificate. (not tested)
MSMTP_USE_TLS_CCERT='no'                      # Use SSL/TLS certificate to authenticate as client
MSMTP_TLS_CCERT='/path/to/file.pem'           # Use this RSA certificate. (not tested)
MSMTP_TLS_CKEY='/path/to/file.pem'            # Use this RSA certificate. (not tested)

MSMTP_CHARSET='ISO-8859-1'                    # charset strings are encoded in
