Advertisement
Guest User

Untitled

a guest
Nov 25th, 2017
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. [nikitis@email_server dovecot]$ sudo dovecot -n
  2. # 2.2.10: /etc/dovecot/dovecot.conf
  3. # OS: Linux 3.10.0-514.26.2.el7.x86_64 x86_64 CentOS Linux release 7.3.1611 (Core)
  4. auth_mechanisms = plain login
  5. first_valid_uid = 1000
  6. mail_access_groups = mail
  7. mail_location = mbox:~/mail:INBOX=/var/mail/%u
  8. mbox_write_locks = fcntl
  9. namespace inbox {
  10. inbox = yes
  11. location =
  12. mailbox Drafts {
  13. special_use = \Drafts
  14. }
  15. mailbox Junk {
  16. special_use = \Junk
  17. }
  18. mailbox Sent {
  19. special_use = \Sent
  20. }
  21. mailbox "Sent Messages" {
  22. special_use = \Sent
  23. }
  24. mailbox Trash {
  25. special_use = \Trash
  26. }
  27. prefix =
  28. }
  29. passdb {
  30. args = username_format=%n
  31. driver = passwd
  32. }
  33. service auth {
  34. unix_listener /var/spool/postfix/private/auth {
  35. group = postfix
  36. mode = 0666
  37. user = postfix
  38. }
  39. }
  40. service lmtp {
  41. unix_listener /var/spool/postfix/private/dovecot-lmtp {
  42. group = postfix
  43. mode = 0600
  44. user = postfix
  45. }
  46. }
  47. ssl = required
  48. ssl_cert = </etc/postfix/mail_secure.crt
  49. ssl_key = </etc/postfix/mail_secure.key
  50. ssl_key_password = <redacted>
  51. userdb {
  52. args = username_format=%n
  53. driver = passwd
  54. }
  55. protocol lmtp {
  56. mail_plugins =
  57. postmaster_address = userA@wetnet.in
  58. }
  59. [userA@email_server dovecot]$ sudo doveadm user -u userA@wetnet.in
  60. doveadm(root): Error: userdb lookup(userA@wetnet.in): Disconnected unexpectedly
  61. doveadm(root): Error: userdb lookup failed for userA@wetnet.in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement