Advertisement
Guest User

Untitled

a guest
Apr 14th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. telnet localhost 143
  2.  
  3. Trying 127.0.0.1...
  4. Connected to chbresser.com
  5. Escape character is '^]'.
  6. Connection closed by foreign host.
  7.  
  8. sudo netstat -ntlp | grep LISTEN
  9.  
  10. tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1148/mysqld
  11. tcp 0 0 0.0.0.0:110 0.0.0.0:* LISTEN 29547/dovecot
  12. tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN 29547/dovecot
  13. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1091/sshd
  14. tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 29708/master
  15. tcp 0 0 0.0.0.0:993 0.0.0.0:* LISTEN 29547/dovecot
  16. tcp 0 0 0.0.0.0:995 0.0.0.0:* LISTEN 29547/dovecot
  17. tcp6 0 0 :::110 :::* LISTEN 29547/dovecot
  18. tcp6 0 0 :::143 :::* LISTEN 29547/dovecot
  19. tcp6 0 0 :::80 :::* LISTEN 23582/apache2
  20. tcp6 0 0 :::22 :::* LISTEN 1091/sshd
  21. tcp6 0 0 :::25 :::* LISTEN 29708/master
  22. tcp6 0 0 :::993 :::* LISTEN 29547/dovecot
  23. tcp6 0 0 :::995 :::* LISTEN 29547/dovecot
  24.  
  25. auth_debug = yes
  26. auth_debug_passwords = yes
  27. auth_mechanisms = plain login
  28. auth_verbose = yes
  29. debug_log_path = /var/log/dovecot/dovecot-debug.log
  30. disable_plaintext_auth = no
  31. log_path = /var/log/dovecot/dovecot-deliver.log
  32. log_timestamp = "%Y-%m-%d %H:%M:%S "
  33. mail_debug = yes
  34. mail_location = maildir:/var/vmail/%d/%n/Maildir
  35. mail_plugins = " quota"
  36. mail_privileged_group = mail
  37.  
  38. namespace inbox {
  39. inbox = yes
  40. location =
  41. mailbox Drafts {
  42. special_use = Drafts
  43. }
  44. mailbox Junk {
  45. special_use = Junk
  46. }
  47. mailbox Sent {
  48. special_use = Sent
  49. }
  50. mailbox "Sent Messages" {
  51. special_use = Sent
  52. }
  53. mailbox Trash {
  54. special_use = Trash
  55. }
  56. prefix =
  57. }
  58. userdb {
  59. driver = passwd
  60. }
  61.  
  62. passdb {
  63. args = %s
  64. driver = pam
  65. }
  66. protocols = "imap pop3"
  67.  
  68. protocol imap {
  69. mail_plugins = " autocreate"
  70. }
  71. plugin {
  72. quota = maildir:storage=1000000
  73. autocreate = Trash
  74. autocreate2 = Sent
  75. autosubscribe = Trash
  76. autosubscribe2 = Sent
  77. }
  78.  
  79. service auth {
  80. unix_listener /var/spool/postfix/private/auth {
  81. group = postfix
  82. mode = 0660
  83. user = postfix
  84. }
  85. unix_listener auth-master {
  86. mode = 0600
  87. user = vmail
  88. }
  89. user = z
  90.  
  91. }
  92. service imap-login {
  93. inet_listener imap {
  94. port = 143
  95. }
  96. }
  97. protocol imap {
  98. mail_plugins = " quota imap_quota"
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement