-
Notifications
You must be signed in to change notification settings - Fork 46
/
email.conf
117 lines (103 loc) · 5.02 KB
/
email.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# This is the DEFAULT configuration file for email.
#
# Please CHANGE THE VALUES below to suit your environment.
# Don't forget to set the shell environment variable EDITOR
############################################################
############################################################
# SMTP Server and Port number you use
############################################################
SMTP_SERVER = '127.0.0.1'
SMTP_PORT = '25'
############################################################
# If you'd rather use sendmail binary, specify it and the
# command line switches to use, here. If you have both
# this option and SMTP_SERVER set, SMTP_SERVER will be of
# higher priority than SENDMAIL.
############################################################
# SENDMAIL_BIN = '/usr/lib/sendmail -t -i'
############################################################
# Your email address: If you'd like To have your name to
# show in the from field instead of just your email address,
# then keep the format below and edit it to your email
# and name.
############################################################
MY_NAME = 'Your Real Name'
MY_EMAIL = '[email protected]'
#REPLY_TO = ''
############################################################
# If your mail server uses SSL or TLS in order to create
# a secure communication, set this to "true". Only very
# simple TLS is implemented at this time. In other words,
# there is no way to load your own certs just yet.
############################################################
# USE_TLS = 'true'
############################################################
# Signature file and settings: Where is the signature file
# You can comment this out if you do not like signatures
############################################################
SIGNATURE_FILE = '&/email.sig'
############################################################
# This is where you store your address book... If you don't
# want address book functionality, just comment it out and
# use regular email addresses.
############################################################
ADDRESS_BOOK = '&/email.address.template'
############################################################
# If you would like to have a copy Of your final email saved
# after it is sent, please specify a directory to save
# it in below... If not, just comment this field out and it
# won't save a sent file other wise, it will save it as
# email.sent in the directory below
############################################################
# SAVE_SENT_MAIL = '~'
############################################################
# With email, temporary files are stored with a random name
# Starting with .EM. You must specify which directory you
# would like these temporary files stored while email is in
# Operation... After email is done executing, it will remove
# Every temporary file it used. The most common storage area
# for temporary files system wide is the /tmp directory
# if TEMP_DIR is not set, you can set the environment variable
# TMPDIR. If that is not set, email will just use /tmp
############################################################
# TEMP_DIR = '/tmp'
############################################################
# You should put the absolute path of your GPG binary
# In this variable. If you do not know the absolute path
# just putting "gpg" will suffice if GPG is in your PATH
# environment variable path.
############################################################
# GPG_BIN = '/usr/bin/gpg'
###########################################################
# You can bypass email asking you for a password for gpg
# when you are encrypting or signing emails if you store
# it here. Keep this safe! Make sure that people can't
# read your personal ~/.email.conf file if you're storing
# your password here!
###########################################################
# GPG_PASS =
###########################################################
# You can use SMTP_AUTH with email. You just need to
# specify which type of SMTP AUTH you will use. Email
# support two types of SMTP AUTH: LOGIN and PLAIN.
# Typically, LOGIN is the most used amongst SMTP servers.
# If you are unsure, ask your ISP.
###########################################################
# SMTP_AUTH = 'LOGIN'
###########################################################
# Setting your SMTP username is MANDITORY. Please
# uncomment the option below and set your username in order
# to use SMTP AUTH
###########################################################
# SMTP_AUTH_USER =
###########################################################
# Setting your password is not manditory. If you do not
# set your password, then email will prompt you for one
# if it sees that you are trying to use SMTP_AUTH.
###########################################################
# SMTP_AUTH_PASS =
###########################################################
# If you have a v-card, you can have it attached to each
# message by specifying it's location here.
###########################################################
#VCARD = "~/dean.ldif"