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

2011-05-12 Thread reviewboard

Updates:
Status: Incomplete

Comment #3 on issue 1914 by trowb...@gmail.com: review board didn't send  
mails by local mail server which is postfix

http://code.google.com/p/reviewboard/issues/detail?id=1914

(No comment was entered for this change.)

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



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

2011-03-22 Thread reviewboard

Updates:
Status: NeedInfo

Comment #2 on issue 1914 by trowb...@gmail.com: review board didn't send  
mails by local mail server which is postfix

http://code.google.com/p/reviewboard/issues/detail?id=1914

Are you getting any errors in the reviewboard or web server logs?

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-issues@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



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

2010-12-07 Thread reviewboard

Status: New
Owner: 
Labels: Type-Defect Priority-Medium

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

http://code.google.com/p/reviewboard/issues/detail?id=1914

*NOTE: Do not post confidential information in this bug report.*

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. :)

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.



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

2010-12-07 Thread reviewboard


Comment #1 on issue 1914 by eerien: review board didn't send mails by local  
mail server which is postfix

http://code.google.com/p/reviewboard/issues/detail?id=1914

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'] = a...@abcd.com

s = smtplib.SMTP()
s.connect(localhost)
s.sendmail(a...@abcd.com,a...@abcd.com, msg.as_string())
s.close()

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To post to this group, send email to reviewboard-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.