Now reading SMTP related settings from the config file

Signed-off-by: Gergely POLONKAI <polesz@w00d5t0ck.info>
This commit is contained in:
Gergely POLONKAI
2012-05-17 23:05:23 +02:00
parent 743cb3c5ad
commit ea0f6e8af2
3 changed files with 80 additions and 1 deletions

View File

@@ -41,3 +41,23 @@ trainable abilities = true
# If set to true, characters can choose to die, and reborn in a new body if
# they are old enough (80% of the racial maximum age)
reborn = true
# SMTP related settings go here. SMTP is required to send out initially
# generated passwords
[smtp]
# The SMTP server's address
smtp server = smtp.gmail.com
# Set to true if the SMTP server provides or requires TLS connections
smtp tls = true
# The username to use to send e-mails
smtp username = wmud
# The password to use to send e-mails
smtp password = wmudPassWD1
# The sender's e-mail address. This will appear in all sent e-mails. Should be
# in the form Name <e-mail@address>, where Name can be omitted
smtp sender = wMUD <polesz@w00d5t0ck.info>