email.conf
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:5k
源码类别:

Email客户端

开发平台:

C/C++

  1. # This is the DEFAULT configuration file for email. 
  2. #
  3. # Please CHANGE THE VALUES below to suit your environment.
  4. # Don't forget to set the shell environment variable EDITOR
  5. ############################################################
  6. ############################################################
  7. # SMTP Server and Port number you use
  8. ############################################################
  9. SMTP_SERVER = '127.0.0.1'
  10. SMTP_PORT = '25'
  11. ############################################################
  12. # If you'd rather use sendmail binary, specify it and the
  13. # command line switches to use, here.  If you have both
  14. # this option and SMTP_SERVER set, SMTP_SERVER will be of
  15. # higher priority than SENDMAIL.
  16. ############################################################
  17. # SENDMAIL_BIN = '/usr/lib/sendmail -t -i'
  18. ############################################################
  19. # Your email address: If you'd like To have your name to
  20. # show in the from field instead of just your email address,
  21. # then keep the format below and edit it to your email
  22. # and name.
  23. ############################################################
  24. MY_NAME  = 'Your Real Name'
  25. MY_EMAIL = 'yourlogin@example.com'
  26. #REPLY_TO = ''
  27. ############################################################
  28. # If your mail server uses SSL or TLS in order to create
  29. # a secure communication, set this to "true". Only very
  30. # simple TLS is implemented at this time. In other words,
  31. # there is no way to load your own certs just yet.
  32. ############################################################
  33. # USE_TLS = 'true'
  34. ############################################################
  35. # Signature file and settings: Where is the signature file
  36. # You can comment this out if you do not like signatures
  37. ############################################################
  38. SIGNATURE_FILE    = '&/email.sig'
  39. ############################################################
  40. # This is where you store your address book... If you don't
  41. # want address book functionality, just comment it out and
  42. # use regular email addresses.
  43. ############################################################
  44. ADDRESS_BOOK = '&/email.address.template'
  45. ############################################################
  46. # If you would like to have a copy Of your final email saved
  47. # after it is sent, please specify a directory to save
  48. # it in below... If not, just comment this field out and it
  49. # won't save a sent file other wise, it will save it as
  50. # email.sent in the directory below
  51. ############################################################
  52. # SAVE_SENT_MAIL = '~'
  53. ############################################################
  54. # With email, temporary files are stored with a random name
  55. # Starting with .EM.  You must specify which directory you
  56. # would like these temporary files stored while email is in
  57. # Operation...  After email is done executing, it will remove
  58. # Every temporary file it used.  The most common storage area
  59. # for temporary files system wide is the /tmp directory
  60. # if TEMP_DIR is not set, you can set the environment variable
  61. # TMPDIR. If that is not set, email will just use /tmp
  62. ############################################################
  63. # TEMP_DIR = '/tmp'
  64. ############################################################
  65. # You should put the absolute path of your GPG binary
  66. # In this variable.  If you do not know the absolute path
  67. # just putting "gpg" will suffice if GPG is in your PATH
  68. # environment variable path.
  69. ############################################################
  70. # GPG_BIN = '/usr/bin/gpg'
  71. ###########################################################
  72. # You can bypass email asking you for a password for gpg
  73. # when you are encrypting or signing emails if you store
  74. # it here.  Keep this safe! Make sure that people can't
  75. # read your personal ~/.email.conf file if you're storing
  76. # your password here!
  77. ###########################################################
  78. # GPG_PASS = 
  79. ###########################################################
  80. # You can use SMTP_AUTH with email.  You just need to 
  81. # specify which type of SMTP AUTH you will use. Email 
  82. # support two types of SMTP AUTH: LOGIN and PLAIN.  
  83. # Typically, LOGIN is the most used amongst SMTP servers.
  84. # If you are unsure, ask your ISP.
  85. ###########################################################
  86. # SMTP_AUTH = 'LOGIN'
  87. ###########################################################
  88. # Setting your SMTP username is MANDITORY.  Please 
  89. # uncomment the option below and set your username in order
  90. # to use SMTP AUTH
  91. ###########################################################
  92. # SMTP_AUTH_USER = 
  93. ###########################################################
  94. # Setting your password is not manditory.  If you do not
  95. # set your password, then email will prompt you for one
  96. # if it sees that you are trying to use SMTP_AUTH.
  97. ###########################################################
  98. # SMTP_AUTH_PASS = 
  99. ###########################################################
  100. # If you have a v-card, you can have it attached to each
  101. # message by specifying it's location here.
  102. ###########################################################
  103. VCARD = "~/dean.ldif"