Index: java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java
===================================================================
--- java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java	(revision 1090)
+++ java/installer2/src/net/oni2/aeinstaller/gui/reporter/ReporterDialog.java	(revision 1211)
@@ -13,4 +13,5 @@
 import javax.activation.DataSource;
 import javax.activation.FileDataSource;
+import javax.mail.Address;
 import javax.mail.AuthenticationFailedException;
 import javax.mail.Message;
@@ -68,4 +69,5 @@
 	private final String SMTP_HOST_NAME = "mail.illy.bz";
 	private final String EMAIL_SUBJECT = "AE support request";
+	private final String EMAIL_FROM = "ae-support@oni2.net";
 	private final String EMAIL_TO = "ae-support@oni2.net";
 
@@ -118,5 +120,7 @@
 			// create a message
 			Message msg = new MimeMessage(session);
-			msg.setFrom(new InternetAddress(txtMail.getText()));
+
+			msg.setFrom(new InternetAddress(EMAIL_TO));
+			msg.setReplyTo(new Address[] { new InternetAddress(txtMail.getText())});
 			msg.setRecipient(RecipientType.TO, new InternetAddress(EMAIL_TO));
 			if (chkGetCopy.isSelected())
