-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.conf
46 lines (46 loc) · 912 Bytes
/
sample.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# You can use spaces and tabs before and after the key and the value.
# All values can be enclosed in single or double quotes.
#
# Directory for logs
# must exist and be writable
#
logdir = /tmp/log
#
# Create log file
# 0 - don't create;
# 1 - create new log file;
# 2 - append to the existing log file.
#
logging = '1'
#
# Be interactive
# 0 (or false) - don't be interactive (don't ask to confirm);
# 1 (or true) - be interactive.
#
interactive = "0"
#
# SMTP URL
url = "smtps://smtp.mailserver.com:465"
#
# Sender name
from = "John Doe"
#
# Sender address
mail_from = "[email protected]"
#
# Sender password on SMTP
pass = "topsecret"
#
# Recipient name
to="Jane Doe"
#
# Recipient address
mail_to = "[email protected]"
#
subject = "Happy birthday!" # Message subject
#
# Message body
#
body = "Dear Jane! Wishing you a day filled with happiness and a year filled with joy. Happy birthday!"
#