Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. mysql> select maildir from mailbox where username="sales@ucolocation.com";
  2. +------------------------+
  3. | maildir |
  4. +------------------------+
  5. | sales@ucolocation.com/ |
  6. +------------------------+
  7. 1 row in set (0.00 sec)
  8.  
  9.  
  10. mysql> select * from domain;
  11. +-----------------+-------------+---------+-----------+----------+-------+-----------+----------+---------------------+---------------------+--------+
  12. | domain | description | aliases | mailboxes | maxquota | quota | transport | backupmx | created | modified | active |
  13. +-----------------+-------------+---------+-----------+----------+-------+-----------+----------+---------------------+---------------------+--------+
  14. | ALL | | 0 | 0 | 0 | 0 | | 0 | 0000-00-00 00:00:00 | 0000-00-00 00:00:00 | 1 |
  15. | ucolocation.com | ucolocation | 100 | 100 | 10 | 0 | virtual | 0 | 2010-06-20 15:12:29 | 2010-06-20 15:12:29 | 1 |
  16. +-----------------+-------------+---------+-----------+----------+-------+-----------+----------+---------------------+---------------------+--------+
  17. 2 rows in set (0.00 sec)
  18.  
  19.  
  20. [root@web2 /usr/local/etc]# rc.d/postfix restart
  21. postfix/postfix-script: stopping the Postfix mail system
  22. postfix/postfix-script: starting the Postfix mail system
  23. [root@web2 /usr/local/etc]# telnet 0 25
  24. Trying 0.0.0.0...
  25. Connected to 0.
  26. Escape character is '^]'.
  27. 220 web2.ucolocation.com ESMTP Sendmail 8.14.3/8.14.3; Sun, 20 Jun 2010 16:52:53 -0700 (PDT)
  28. helo x.x
  29. 250 web2.ucolocation.com Hello localhost [127.0.0.1], pleased to meet you
  30. mail from:admin@ucolocation.com
  31. 250 2.1.0 admin@ucolocation.com... Sender ok
  32. rcpt to:sales@ucolocation.com
  33. 250 2.1.5 sales@ucolocation.com... Recipient ok
  34. data
  35. 354 Enter mail, end with "." on a line by itself
  36. Subject: gencha test message
  37. testing
  38. .
  39. 250 2.0.0 o5KNqrPh013978 Message accepted for delivery
  40. quit
  41. 221 2.0.0 web2.ucolocation.com closing connection
  42.  
  43.  
  44.  
  45. tail -f /var/log/maillog
  46. Jun 20 16:52:48 web2 postfix/master[13974]: daemon started -- version 2.8-20100323, configuration /usr/local/etc/postfix
  47. Jun 20 16:53:24 web2 sm-mta[13978]: o5KNqrPh013978: from=admin@ucolocation.com, size=37, class=0, nrcpts=1, msgid=<201006202353.o5KNqrPh013978@web2.ucolocation.com>, proto=SMTP, daemon=Daemon0, relay=localhost [127.0.0.1]
  48. Jun 20 16:53:24 web2 sm-mta[13980]: STARTTLS=client, relay=mx1.ucolocation.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
  49. Jun 20 16:53:24 web2 postfix/smtpd[13981]: warning: when SASL type is "dovecot", SASL path "smtpd" should be a socket pathname
  50. Jun 20 16:53:24 web2 postfix/smtpd[13981]: connect from unknown[192.168.1.151]
  51. Jun 20 16:53:24 web2 postfix/smtpd[13981]: warning: SASL: Connect to smtpd failed: No such file or directory
  52. Jun 20 16:53:24 web2 postfix/smtpd[13981]: fatal: no SASL authentication mechanisms
  53. Jun 20 16:53:25 web2 postfix/master[13974]: warning: process /usr/local/libexec/postfix/smtpd pid 13981 exit status 1
  54. Jun 20 16:53:25 web2 postfix/master[13974]: warning: /usr/local/libexec/postfix/smtpd: bad command startup -- throttling
  55. Jun 20 16:53:25 web2 sm-mta[13980]: STARTTLS=client, relay=mx2.ucolocation.com., version=TLSv1/SSLv3, verify=FAIL, cipher=AES256-SHA, bits=256/256
  56. Jun 20 16:53:56 web2 sm-mta[13980]: o5KNqrPh013978: to=sales@ucolocation.com, delay=00:00:44, xdelay=00:00:32, mailer=esmtp, pri=30037, relay=mx2.ucolocation.com. [209.164.2.91], dsn=4.0.0, stat=Deferred: 451 Temporary local problem, please try again!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement