<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: phpBB Mail Gateway</title>
	<atom:link href="http://elric.novitraq.com/phpbb-mail-gateway/feed" rel="self" type="application/rss+xml" />
	<link>http://elric.novitraq.com/phpbb-mail-gateway?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=phpbb-mail-gateway</link>
	<description>If I don&#039;t write it down, I&#039;ll forget</description>
	<lastBuildDate>Tue, 12 Feb 2013 22:36:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: James</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-129</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 12 Feb 2013 22:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-129</guid>
		<description>Success! I did all of the middleware in perl while learning a lot along the way. There are in-fact various ways to tie a Yahoo Group to your PHPBB3 forum. Absolutely abandon the old and nonexistent mail2forum. Dont give it another thought. I chose using the grabyahoogroup.pl which supersedes yahoo2maildir.pl. The scraper bypasses the need for email as well as multiple email accounts to separate the various groups. I modified it to save a duplicate of every new file into an IMPORT folder to work from, so I still always have the original messages. Then you can clean up the mail files with your own perl and regex magic and then run this importer against it. I will be throwing this up on a few forums immediately and probably any BB3 forum I do in the future. It can easily be a convenience to your niche in one-way or even two-way mode.
February 12, 2013.</description>
		<content:encoded><![CDATA[<p>Success! I did all of the middleware in perl while learning a lot along the way. There are in-fact various ways to tie a Yahoo Group to your PHPBB3 forum. Absolutely abandon the old and nonexistent mail2forum. Dont give it another thought. I chose using the grabyahoogroup.pl which supersedes yahoo2maildir.pl. The scraper bypasses the need for email as well as multiple email accounts to separate the various groups. I modified it to save a duplicate of every new file into an IMPORT folder to work from, so I still always have the original messages. Then you can clean up the mail files with your own perl and regex magic and then run this importer against it. I will be throwing this up on a few forums immediately and probably any BB3 forum I do in the future. It can easily be a convenience to your niche in one-way or even two-way mode.<br />
February 12, 2013.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-128</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sun, 10 Feb 2013 04:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-128</guid>
		<description>For those looking at this, I have figured out the following: 
- It does try to &quot;thread&quot; messages based on topic title which is really great when it works. I wish it would also try using (In-Reply-To:).
- You need to enable extension=php_mbstring.dll in php.ini.
- For emails out, it uses php mail function without all of the phpbb stuff, so you need to make sure your php.ini has mail configured correctly.
- It absolutely requires plaintext format messages (Content-Type: text/plain; charset=&quot;ISO-8859-1&quot;), it chokes heavily on messages that have been scraped using Yahoo2Mbox or any other scraping tool when they are (Content-Type: multipart/alternative; boundary=&quot;0-58645656-1287429990=:31883&quot;). This makes it a pain to import an archive.
- It will not pull date from the message and uses the phpbb post date. Another pain when importing from an archive.
- Pop works
- Maildir import works and is a good option when you want speed and also when using a single yahoo account for multiple groups. You can use a pop tool to sort mail based on subject or other header info.

Things I still need to figure out:
- How to import mbox or maildir archive when it has multipart messages sprinkled in. I am wondering if there is a tool that will convert messages to plaintext and thereby fix the mess that would otherwise be left behind if you simply searched and replaced the Content-Type.
- Need to find a pop client/mail agent that can sort mail to folders that will run on Windows, php, perl...  Or then resolve to use a different email for each group/froum.
- Come up with some code to clean up emails to remove any references to &quot;groups.yahoo.com&quot; and so forth.
- Come up with code to also remove the very common &quot;[Non-text portions of this message have been removed] &quot;
- Resolve issue where maildir files are not being deleted. Prolly a server rights thing I havent figured out yet.</description>
		<content:encoded><![CDATA[<p>For those looking at this, I have figured out the following:<br />
- It does try to &#8220;thread&#8221; messages based on topic title which is really great when it works. I wish it would also try using (In-Reply-To:).<br />
- You need to enable extension=php_mbstring.dll in php.ini.<br />
- For emails out, it uses php mail function without all of the phpbb stuff, so you need to make sure your php.ini has mail configured correctly.<br />
- It absolutely requires plaintext format messages (Content-Type: text/plain; charset=&#8221;ISO-8859-1&#8243;), it chokes heavily on messages that have been scraped using Yahoo2Mbox or any other scraping tool when they are (Content-Type: multipart/alternative; boundary=&#8221;0-58645656-1287429990=:31883&#8243;). This makes it a pain to import an archive.<br />
- It will not pull date from the message and uses the phpbb post date. Another pain when importing from an archive.<br />
- Pop works<br />
- Maildir import works and is a good option when you want speed and also when using a single yahoo account for multiple groups. You can use a pop tool to sort mail based on subject or other header info.</p>
<p>Things I still need to figure out:<br />
- How to import mbox or maildir archive when it has multipart messages sprinkled in. I am wondering if there is a tool that will convert messages to plaintext and thereby fix the mess that would otherwise be left behind if you simply searched and replaced the Content-Type.<br />
- Need to find a pop client/mail agent that can sort mail to folders that will run on Windows, php, perl&#8230;  Or then resolve to use a different email for each group/froum.<br />
- Come up with some code to clean up emails to remove any references to &#8220;groups.yahoo.com&#8221; and so forth.<br />
- Come up with code to also remove the very common &#8220;[Non-text portions of this message have been removed] &#8221;<br />
- Resolve issue where maildir files are not being deleted. Prolly a server rights thing I havent figured out yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-127</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 26 Jan 2013 04:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-127</guid>
		<description>Elric, I just stumbled across your efforts here and am excited to give it a try. I was wondering two things. 

First, can you or anyone else who may be using this share with me a url so I can see what the end result looks like?

Second, my goal is to sync a forum from a yahoo group, minimally one way/archival. I have used a program called yahoo2mbox that has slowly collected all of the history into an mbox file. With your list experience, can you give me some creative ideas on how I could get this data into a fresh phpbb install before I enable the mail gateway to continue the syncing from then on? I too am running IIS environment and am limited on what I might do to achieve this.

I wonder if the mail gateway could be easily modified to not pop, but instead check an mbox file for changes to process into a forum. Seems like a good solution to the yahoo groups dilemma: Mbox2Phpbb.</description>
		<content:encoded><![CDATA[<p>Elric, I just stumbled across your efforts here and am excited to give it a try. I was wondering two things. </p>
<p>First, can you or anyone else who may be using this share with me a url so I can see what the end result looks like?</p>
<p>Second, my goal is to sync a forum from a yahoo group, minimally one way/archival. I have used a program called yahoo2mbox that has slowly collected all of the history into an mbox file. With your list experience, can you give me some creative ideas on how I could get this data into a fresh phpbb install before I enable the mail gateway to continue the syncing from then on? I too am running IIS environment and am limited on what I might do to achieve this.</p>
<p>I wonder if the mail gateway could be easily modified to not pop, but instead check an mbox file for changes to process into a forum. Seems like a good solution to the yahoo groups dilemma: Mbox2Phpbb.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-122</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 02 Oct 2012 14:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-122</guid>
		<description>I am getting my emails from Gmail, who uses only SSL.
Thanks!</description>
		<content:encoded><![CDATA[<p>I am getting my emails from Gmail, who uses only SSL.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qurgh</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-121</link>
		<dc:creator>qurgh</dc:creator>
		<pubDate>Thu, 26 Apr 2012 23:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-121</guid>
		<description>Ok, nevermind. I got it working by adding ssl:// to the front of the host name in pop3_collect.php. You can delete all my messages. Again, thanks for the great mod. It seems to be working!</description>
		<content:encoded><![CDATA[<p>Ok, nevermind. I got it working by adding ssl:// to the front of the host name in pop3_collect.php. You can delete all my messages. Again, thanks for the great mod. It seems to be working!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qurgh</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-120</link>
		<dc:creator>qurgh</dc:creator>
		<pubDate>Thu, 26 Apr 2012 23:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-120</guid>
		<description>Damn it! Sorry for the double post. The site said the first one was a duplicate and didn&#039;t show it to me until I posted a second one... Feel free to delete one of them, since they ask the same thing (and feel free to delete this post too) :D

Thanks again for such a great mod!</description>
		<content:encoded><![CDATA[<p>Damn it! Sorry for the double post. The site said the first one was a duplicate and didn&#8217;t show it to me until I posted a second one&#8230; Feel free to delete one of them, since they ask the same thing (and feel free to delete this post too) <img src='http://elric.novitraq.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Thanks again for such a great mod!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qurgh</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-119</link>
		<dc:creator>qurgh</dc:creator>
		<pubDate>Thu, 26 Apr 2012 23:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-119</guid>
		<description>Thanks for making this! I&#039;ve been looking for something like this for ages!

Is there a way to get it to work with SSL POP3? I have to use a Google account as the mail receiver, but Google forces SSL.

Is there any chance of porting the function in pop3_collect.php to the built-in PHP IMAP functions? They support POP3 and SSL. If that&#039;s not an option, could you explain exactly what output the function should give so I could take a stab at porting it myself?</description>
		<content:encoded><![CDATA[<p>Thanks for making this! I&#8217;ve been looking for something like this for ages!</p>
<p>Is there a way to get it to work with SSL POP3? I have to use a Google account as the mail receiver, but Google forces SSL.</p>
<p>Is there any chance of porting the function in pop3_collect.php to the built-in PHP IMAP functions? They support POP3 and SSL. If that&#8217;s not an option, could you explain exactly what output the function should give so I could take a stab at porting it myself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qurgh</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-118</link>
		<dc:creator>qurgh</dc:creator>
		<pubDate>Thu, 26 Apr 2012 23:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-118</guid>
		<description>Thank you for making this! I&#039;ve been looking for something like this for ages!

Is there anyway to get this to work with SSL POP3? I&#039;m trying to pop the mail from a Google POP3 account (the domain I&#039;m working with has Google Hosted Apps). 

I&#039;ve looked in the pop3_collect.php and noticed you used raw sockets instead of the PHP IMAP functions which support SSL POP3. Is there a possibility of porting this function to the built-in IMAP functions, or could you describe exactly what information should be returned by that function so I could port it myself?</description>
		<content:encoded><![CDATA[<p>Thank you for making this! I&#8217;ve been looking for something like this for ages!</p>
<p>Is there anyway to get this to work with SSL POP3? I&#8217;m trying to pop the mail from a Google POP3 account (the domain I&#8217;m working with has Google Hosted Apps). </p>
<p>I&#8217;ve looked in the pop3_collect.php and noticed you used raw sockets instead of the PHP IMAP functions which support SSL POP3. Is there a possibility of porting this function to the built-in IMAP functions, or could you describe exactly what information should be returned by that function so I could port it myself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elric</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-117</link>
		<dc:creator>Elric</dc:creator>
		<pubDate>Tue, 24 Apr 2012 19:49:16 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-117</guid>
		<description>1) When someone posts a message with attachments the attachments are discarded.  It would be nice to turn them into post attachments but my own requirements haven&#039;t included that yet.
2) I don&#039;t know what would happen if the guest account has no write access but I think the post will still take place.  
I quite understand not wanting to try it on a live system but you could create a private test forum not visible to the public and test it there.
Good luck and thank for your support!</description>
		<content:encoded><![CDATA[<p>1) When someone posts a message with attachments the attachments are discarded.  It would be nice to turn them into post attachments but my own requirements haven&#8217;t included that yet.<br />
2) I don&#8217;t know what would happen if the guest account has no write access but I think the post will still take place.<br />
I quite understand not wanting to try it on a live system but you could create a private test forum not visible to the public and test it there.<br />
Good luck and thank for your support!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mats</title>
		<link>http://elric.novitraq.com/phpbb-mail-gateway#comment-116</link>
		<dc:creator>Mats</dc:creator>
		<pubDate>Tue, 24 Apr 2012 02:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://elric.novitraq.com/?p=22#comment-116</guid>
		<description>Aaahhh... the search is over! (I hope.) This is a mod I desperately need but realising it is still in v. 0.0.3 I have not (yet) been brave/foolish enough to test it on a production phpbb3 installation...
 Two questions before I take the leap:
1)  What happens if someone e-mails or posts an attachment? (Will your mod include or truncate the attachment during the conversion, or will it crash the system and cause havoc?) 
2) What happens if &quot;Create Users for Unrecognised Accounts&quot; is disabled and Guest account has no write access? Is the mail left untouched or is it deleted? (I&#039;m trying to avoid spam buildup on the forum and in the inbox.)
Thanks for developing this mod!</description>
		<content:encoded><![CDATA[<p>Aaahhh&#8230; the search is over! (I hope.) This is a mod I desperately need but realising it is still in v. 0.0.3 I have not (yet) been brave/foolish enough to test it on a production phpbb3 installation&#8230;<br />
 Two questions before I take the leap:<br />
1)  What happens if someone e-mails or posts an attachment? (Will your mod include or truncate the attachment during the conversion, or will it crash the system and cause havoc?)<br />
2) What happens if &#8220;Create Users for Unrecognised Accounts&#8221; is disabled and Guest account has no write access? Is the mail left untouched or is it deleted? (I&#8217;m trying to avoid spam buildup on the forum and in the inbox.)<br />
Thanks for developing this mod!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
