Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. Enter 0.0.0.0 for listen address
  2. Select Internal for authentication method
  3. Specify your admin <username>
  4. Enter an admin <password>
  5. Select Internal for web server integration
  6. Enter 80 for Webcit HTTP port
  7. Enter 443 for the Webcit HTTPS port (or enter -1 to disable it)
  8. Select your desired language
  9.  
  10. mail.domain.com
  11.  
  12. /*
  13. |--------------------------------------------------------------------------
  14. | SMTP Host Address
  15. |--------------------------------------------------------------------------
  16. |
  17. | Here you may provide the host address of the SMTP server used by your
  18. | applications. A default option is provided that is compatible with
  19. | the Postmark mail service, which will provide reliable delivery.
  20. |
  21. */
  22.  
  23. 'host' => 'mail.hututoo.com',
  24.  
  25. /*
  26. |--------------------------------------------------------------------------
  27. | SMTP Host Port
  28. |--------------------------------------------------------------------------
  29. |
  30. | This is the SMTP port used by your application to delivery e-mails to
  31. | users of your application. Like the host we have set this value to
  32. | stay compatible with the Postmark e-mail application by default.
  33. |
  34. */
  35.  
  36. 'port' => 25,
  37.  
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Global "From" Address
  41. |--------------------------------------------------------------------------
  42. |
  43. | You may wish for all e-mails sent by your application to be sent from
  44. | the same address. Here, you may specify a name and address that is
  45. | used globally for all e-mails that are sent by your application.
  46. |
  47. */
  48.  
  49. 'from' => array('address' => 'no-reply@hututoo.com', 'name' => null),
  50.  
  51. /*
  52. |--------------------------------------------------------------------------
  53. | E-Mail Encryption Protocol
  54. |--------------------------------------------------------------------------
  55. |
  56. | Here you may specify the encryption protocol that should be used when
  57. | the application send e-mail messages. A sensible default using the
  58. | transport layer security protocol should provide great security.
  59. |
  60. */
  61.  
  62. 'encryption' => 'tls',
  63.  
  64. /*
  65. |--------------------------------------------------------------------------
  66. | SMTP Server Username
  67. |--------------------------------------------------------------------------
  68. |
  69. | If your SMTP server requires a username for authentication, you should
  70. | set it here. This will get used to authenticate with your server on
  71. | connection. You may also set the "password" value below this one.
  72. |
  73. */
  74.  
  75. 'username' => 'passname',
  76.  
  77. /*
  78. |--------------------------------------------------------------------------
  79. | SMTP Server Password
  80. |--------------------------------------------------------------------------
  81. |
  82. | Here you may set the password required by your SMTP server to send out
  83. | messages from your application. This will be given to the server on
  84. | connection so that the application will be able to send messages.
  85. |
  86. */
  87.  
  88. 'password' => 'paswwordtest',
  89.  
  90. /*
  91. |--------------------------------------------------------------------------
  92. | Sendmail System Path
  93. |--------------------------------------------------------------------------
  94. |
  95. | When using the "sendmail" driver to send e-mails, we will need to know
  96. | the path to where Sendmail lives on this server. A default path has
  97. | been provided here, which will work well on most of your systems.
  98. |
  99. */
  100.  
  101. 'sendmail' => '/usr/sbin/citmail -t',
  102.  
  103. sendmail_path = "/path/to/citmail -t"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement