Sending email using SMTP (Gmail) from Hudson CI
- by jensendarren
How can I set up Hudson CI so that I can send out emails from the server following a build failure? At the moment all I get is the following error:
com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Must issue a STARTTLS command first
One solution is to start Hudson as follows:
java -Dmail.smtp.starttls.enable="true" -jar…