<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Incoming e-mail problem in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177471#M130601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I had the exact same problem when I was setting up the Alfresco smtp server to receive incoming emails.&amp;nbsp; We are running Tomcat as Tomcat user and not as root and since port 25 is a privledged port we kept receiving this error.&amp;nbsp; We got around the permission denied error by forwarding port 25 to port 2525.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Im not sure if youre running Linux but here the command i used:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;iptables -t nat -A PREROUTING -p tcp –dport 25 -j REDIRECT –to-ports 2525&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After that everything worked.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BuckLao&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Mar 2009 19:55:26 GMT</pubDate>
    <dc:creator>bucklao</dc:creator>
    <dc:date>2009-03-09T19:55:26Z</dc:date>
    <item>
      <title>Incoming e-mail problem</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177470#M130600</link>
      <description>I'm having trouble setting up incoming e-mail. Outgoing e-mail is working fine.Looking at the log file, I get the line:BindExecption: Permission deniedorg.subethamail.smtp.server.SMTPServer.start(SMTPServer.java:198)I've only followed the recommendations to set up the file custom-email-server.proper</description>
      <pubDate>Mon, 23 Feb 2009 12:46:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177470#M130600</guid>
      <dc:creator>fustbariclation</dc:creator>
      <dc:date>2009-02-23T12:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Incoming e-mail problem</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177471#M130601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I had the exact same problem when I was setting up the Alfresco smtp server to receive incoming emails.&amp;nbsp; We are running Tomcat as Tomcat user and not as root and since port 25 is a privledged port we kept receiving this error.&amp;nbsp; We got around the permission denied error by forwarding port 25 to port 2525.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Im not sure if youre running Linux but here the command i used:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;iptables -t nat -A PREROUTING -p tcp –dport 25 -j REDIRECT –to-ports 2525&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After that everything worked.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BuckLao&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 19:55:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177471#M130601</guid>
      <dc:creator>bucklao</dc:creator>
      <dc:date>2009-03-09T19:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Incoming e-mail problem</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177472#M130602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I post this reply because I want to share my SOLUTION.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bucklao say right!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had the exact same problem&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;BindExecption: Permission denied&lt;BR /&gt;org.subethamail.smtp.server.SMTPServer.start(SMTPServer.java:198)&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;The reason is that 25 is a privileged port on Mac/Linux systems. To solve it, I used iptables to map to non-privileged port and configured mail.server.port to another port. Here my configurations:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;custom-email-server.properties&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;email.inbound.enabled=true&lt;BR /&gt;email.inbound.unknownUser=anonymous&lt;BR /&gt;email.server.enabled=true&lt;BR /&gt;&lt;BR /&gt;email.server.port=25252&lt;BR /&gt;email.server.domain=mydomain.it&lt;BR /&gt;&lt;BR /&gt;email.server.allowed.senders=.*&lt;BR /&gt;email.server.blocked.senders=&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;iptables settings&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;iptables -t nat -A PREROUTING -p tcp –dport 25 -j REDIRECT –to-ports 25252&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 08:47:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/incoming-e-mail-problem/m-p/177472#M130602</guid>
      <dc:creator>joe_l3</dc:creator>
      <dc:date>2009-04-17T08:47:20Z</dc:date>
    </item>
  </channel>
</rss>

