Index: java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java
===================================================================
--- java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java	(revision 924)
+++ java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java	(revision 989)
@@ -14,10 +14,8 @@
 import javax.activation.FileDataSource;
 import javax.mail.AuthenticationFailedException;
-import javax.mail.Authenticator;
 import javax.mail.Message;
 import javax.mail.Message.RecipientType;
 import javax.mail.MessagingException;
 import javax.mail.Multipart;
-import javax.mail.PasswordAuthentication;
 import javax.mail.Session;
 import javax.mail.Transport;
@@ -69,6 +67,4 @@
 
 	private final String SMTP_HOST_NAME = "mail.illy.bz";
-	private final String SMTP_AUTH_USER = "aei_reports@oni2.net";
-	private final String SMTP_AUTH_PWD = "mb0NkjHuWrDFfMDe2BkUDU2Dknkkvq";
 	private final String EMAIL_SUBJECT = "AE support request";
 	private final String EMAIL_TO = "ae-support@oni2.net";
@@ -104,12 +100,4 @@
 	}
 
-	private class SMTPAuthenticator extends Authenticator {
-		public PasswordAuthentication getPasswordAuthentication() {
-			String username = SMTP_AUTH_USER;
-			String password = SMTP_AUTH_PWD;
-			return new PasswordAuthentication(username, password);
-		}
-	}
-
 	@DoInBackground(progressMessage = "send.title", cancelable = false, indeterminateProgress = true)
 	private boolean send(final BackgroundEvent evt) {
@@ -124,7 +112,5 @@
 			Properties props = new Properties();
 			props.put("mail.smtp.host", SMTP_HOST_NAME);
-			props.put("mail.smtp.auth", "true");
-			Authenticator auth = new SMTPAuthenticator();
-			Session session = Session.getDefaultInstance(props, auth);
+			Session session = Session.getDefaultInstance(props);
 
 			session.setDebug(false);
@@ -184,4 +170,16 @@
 			} else {
 				msgText.append("Installation.log does not exist!\n");
+			}
+
+			// daodan.ini
+			f = new File(Paths.getEditionBasePath(), "daodan.ini");
+			if (f.exists()) {
+				mimeBody = new MimeBodyPart();
+				source = new FileDataSource(f);
+				mimeBody.setDataHandler(new DataHandler(source));
+				mimeBody.setFileName("daodan.ini");
+				multipart.addBodyPart(mimeBody);
+			} else {
+				msgText.append("daodan.ini does not exist!\n");
 			}
 
