<div dir="ltr">Thanks for the clarification. </div><span>
</span><p dir="ltr">If you are starting a new bot I would definitely recommend to start with 0.9.0rc1.</p><p dir="ltr">It has docker support built in and lots of better internals that will help you to scale when the time comes.</p><p dir="ltr">You can look at the Dockerfiles that we provide in the source code as a good start to build your own.</p><p dir="ltr">I would also recommend as a docker best practice to not put sendmail in the same docker and rather use docker compose to create your system.</p><span></span>Also for docker, as it is new technology I would also recommend to use the latest version and not the one shipped in 14.04<div><br></div><div><br><div class="gmail_quote"><div dir="ltr">Le ven. 5 août 2016 18:20, Barta, Hank <<a href="mailto:hank.barta@sandc.com" target="_blank">hank.barta@sandc.com</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Pierre,<br>
Thanks for the reply.<br>
<br>
There is no reason not to upgrade. The only reason I’m on 0.8.8 is because that is what comes stock with Ubuntu 14.04 LTS. (Unfortunately Ubuntu cannot be upgraded.)<br>
<br>
I can upgrade given a reason. If you’re saying that email notification may not work in 0.8.8 and getting help for that is not likely due to how far behind it is, I think that is sufficient reason.<br>
<br>
I wanted to first make sure that there was not something obvious that I was doing wrong and you did not spot anything obvious. I think that before I pursue this further I should upgrade.<br>
<br>
Thanks,<br>
hank<br>
<br>
<br>
<br>
From: Pierre Tardy [mailto:<a href="mailto:tardyp@gmail.com" target="_blank">tardyp@gmail.com</a>]<br>
Sent: Friday, August 05, 2016 11:03 AM<br>
To: Barta, Hank <<a href="mailto:hank.barta@sandc.com" target="_blank">hank.barta@sandc.com</a>>; <a href="mailto:users@buildbot.net" target="_blank">users@buildbot.net</a><br>
Subject: Re: [<a href="mailto:users@bb.net" target="_blank">users@bb.net</a>] Buildbot not sending email status updates<br>
<br>
Hi Hank.<br>
Any reason why you won't upgrade?<br>
0.8.8 is so antique that it is difficult for us to answer.<br>
Looking at your email. It looks like you are doing it right but the devil is in the details.<br>
Without the actual Dockerfile of the worker and the relevant master.cfg snippets it's difficult for us to help.<br>
Cheers<br>
Pierre<br>
<br>
Le ven. 5 août 2016 17:59, Barta, Hank <<a href="mailto:hank.barta@sandc.com" target="_blank">hank.barta@sandc.com</a>> a écrit :<br>
Let me try this again - I'm not sure it went out. (Formatting this time as plaintext vs. whatever Outlook prefers.)<br>
<br>
In addition, I now find that the master will not startup with "mode=('all',)" even though that is a documented mode for 0.8.8.<br>
(from <a href="http://docs.buildbot.net/0.8.8/manual/cfg-statustargets.html" rel="noreferrer" target="_blank">http://docs.buildbot.net/0.8.8/manual/cfg-statustargets.html</a>)<br>
<br>
Thanks,<br>
hank<br>
<br>
<br>
From: Barta, Hank<br>
Sent: Wednesday, August 03, 2016 3:50 PM<br>
To: '<a href="mailto:users@buildbot.net" target="_blank">users@buildbot.net</a>' <<a href="mailto:users@buildbot.net" target="_blank">users@buildbot.net</a>><br>
Subject: Buildbot not sending email status updates<br>
<br>
Hi folks,<br>
I'm running Buildbot 0.8.8 in a Docker container (Ubuntu 14.04 LTS) on a Linux host. I've configured postfix on the host and ssmtp inside the container to be  able to send email. I have confirmed this by sending using 'sendmail' from within the container.<br>
<br>
I have tried to configure Buildbot to send email status updates using the following code:<br>
# add email status notification<br>
<br>
from buildbot.status import mail<br>
from buildbot.status.builder import Results<br>
<br>
def messageFormatter(mode, name, build, results, master_status):<br>
    result = util.Results[results]<br>
<br>
    text = list()<br>
    text.append("STATUS: %s" % result.title())<br>
    return {<br>
        'body' : "\n".join(text),<br>
        'type' : 'plain'<br>
    }<br>
<br>
m = mail.MailNotifier(fromaddr="<a href="mailto:codebuilder@sandc.com" target="_blank">codebuilder@sandc.com</a>",<br>
                      extraRecipients=["<a href="mailto:hank.barta@sandc.com" target="_blank">hank.barta@sandc.com</a>"],<br>
                      mode=('all',),<br>
                      sendToInterestedUsers=False,<br>
                      messageFormatter=messageFormatter)<br>
c['status'].append(m)<br>
<br>
This follows the web status notifier which does work,<br>
<br>
I thought that this configuration would send email for any event. I can force s successful build but I get no email.<br>
<br>
Do I have something wrong or are my expectations wrong?<br>
<br>
Thanks!<br>
________________________________<br>
NOTICE OF CONFIDENTIALITY:<br>
This message may contain information that is considered confidential and which may be prohibited from disclosure under applicable law or by contractual agreement. The information is intended solely for the use of the individual or entity named above. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the information contained in or attached to this message is strictly prohibited. If you have received this email transmission in error, please notify the sender by replying to this email and then delete it from your system.<br>
_______________________________________________<br>
users mailing list<br>
<a href="mailto:users@buildbot.net" target="_blank">users@buildbot.net</a><br>
<a href="https://lists.buildbot.net/mailman/listinfo/users" rel="noreferrer" target="_blank">https://lists.buildbot.net/mailman/listinfo/users</a><br>
</blockquote></div></div>