1914: review board didn't send mails by local mail server which is postfix

eer***@gmai***** (Google Code) (Is this you? Claim this profile.)
May 13, 2011
What version are you running?
- 1.5.1

What's the URL of the page containing the problem?
- http://review.uizard.org/dashboard/

What steps will reproduce the problem?
1. Review Group Setting (Mailing list) is done.
2. 'Send e-mails for review requests and reviews' in E-Mail Setting is done.
   Mail Server: localhost
   Port: 25
   Username: (local id)
   Password: (Password)
3. Create a new review, and do something.

What is the expected output? What do you see instead?
- I expected to receive a mail about the review, but it wasn't.

What operating system are you using? What browser?
Ubuntu (Hardy)

# uname -sar
Linux uizard 2.6.24-28-xen #1 SMP Sat Oct 16 19:34:04 UTC 2010 x86_64 GNU/Linux


Please provide any additional information below.
- mail.log is as follows.
Dec  7 15:45:38 uizard postfix/smtpd[20301]: connect from localhost[127.0.0.1]
Dec  7 15:45:38 uizard postfix/smtpd[20301]: lost connection after EHLO from localhost[127.0.0.1]
Dec  7 15:45:38 uizard postfix/smtpd[20301]: disconnect from localhost[127.0.0.1]
Dec  7 15:54:05 uizard postfix/smtpd[20434]: connect from localhost[127.0.0.1]
Dec  7 15:54:05 uizard postfix/smtpd[20434]: lost connection after EHLO from localhost[127.0.0.1]
Dec  7 15:54:05 uizard postfix/smtpd[20434]: disconnect from localhost[127.0.0.1]


I tried with 'Use TLS for authentication' option. But it wasn't work too.


Thank you. :)
#1 eer***@gmai***** (Google Code) (Is this you? Claim this profile.)
I tested by following code and it was worked.

------------------------
import smtplib
from email.MIMEText import MIMEText

msg = MIMEText("Hello World")
msg['Subject'] = 'greeting from here'
msg['From'] = "test"
msg['Reply-to'] = "test"
msg['To'] = "abcd@abcd.com"

s = smtplib.SMTP()
s.connect("localhost")
s.sendmail("abcd@abcd.com","abcd@abcd.com", msg.as_string())
s.close()
david
#2 david
Are you getting any errors in the reviewboard or web server logs?
  • +NeedInfo
david
#3 david
  • -NeedInfo
    +Incomplete