<?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 for /var/logs/paulooi.log	</title>
	<atom:link href="https://logs.paulooi.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>https://logs.paulooi.com</link>
	<description>Systems Admin, Web Development and etc</description>
	<lastBuildDate>Wed, 17 Apr 2024 13:01:57 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		Comment on How to do Word Count on TextMate by Paul Ooi		</title>
		<link>https://logs.paulooi.com/how-to-do-word-count-on-textmate.php/comment-page-1#comment-121933</link>

		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Wed, 17 Apr 2024 13:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1119#comment-121933</guid>

					<description><![CDATA[Not sure buddy. I think there must be some plugins allow that.]]></description>
			<content:encoded><![CDATA[<p>Not sure buddy. I think there must be some plugins allow that.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to do Word Count on TextMate by Harshal		</title>
		<link>https://logs.paulooi.com/how-to-do-word-count-on-textmate.php/comment-page-1#comment-121877</link>

		<dc:creator><![CDATA[Harshal]]></dc:creator>
		<pubDate>Mon, 01 Apr 2024 18:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1119#comment-121877</guid>

					<description><![CDATA[Thank you, Paul.

By any chance, are you aware of a way to display the word count all the time in TextMate? I was thinking the status bar at the bottom (where we see the cursor position and tab size among other items) would be a good place to display the word count of the file.]]></description>
			<content:encoded><![CDATA[<p>Thank you, Paul.</p>
<p>By any chance, are you aware of a way to display the word count all the time in TextMate? I was thinking the status bar at the bottom (where we see the cursor position and tab size among other items) would be a good place to display the word count of the file.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Rsync from Remote Server to Synology by Paul Ooi		</title>
		<link>https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php/comment-page-1#comment-120630</link>

		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Thu, 30 Mar 2023 01:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1757#comment-120630</guid>

					<description><![CDATA[@Paolo, this is definitely useful!  Thanks.]]></description>
			<content:encoded><![CDATA[<p>@Paolo, this is definitely useful!  Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Check Paypal Pre-Approved Payment List by Jil Yana		</title>
		<link>https://logs.paulooi.com/how-to-check-paypal-pre-approved-payment-list.php/comment-page-1#comment-120456</link>

		<dc:creator><![CDATA[Jil Yana]]></dc:creator>
		<pubDate>Sat, 28 Jan 2023 12:10:25 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1429#comment-120456</guid>

					<description><![CDATA[I couldn&#039;t find the My Preapproved Payment option in my PayPal account. What to do?]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find the My Preapproved Payment option in my PayPal account. What to do?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Enable SMTP Port 587 on Exim by Benedict Arnold		</title>
		<link>https://logs.paulooi.com/enable-smtp-port-587-on-exim.php/comment-page-1#comment-120070</link>

		<dc:creator><![CDATA[Benedict Arnold]]></dc:creator>
		<pubDate>Sun, 25 Sep 2022 20:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=924#comment-120070</guid>

					<description><![CDATA[IT seems that most people do not want to answer this question (perhaps because they do not know the answer) and go into a long diatribe of whataboutery and their arguments about why you should not even attempt to do this.

After much searching I found the answer on the &quot;nerwbies&quot; site and on checking the official Exim4 documentation confirmed  hat the answer provided was correct.  The problem with the Exim4 documetnation is that you have to know at least part of the answer before you have some hope of finding the full answer in the relevant section where it is buried with hundreds of other options.

So in order to set the outgoing port for Exim4 to talk to another mail transport agent, the appropriate TRANSPORT has to be used and configured.

This TRANSPORT will use the SMTP drtiver.  The SMTP driver by default uses port 25 of course, but the port directive can be used to chage from the default.

Obviously in the earlier ROUTER section of the configuration you will filter the messages which need to go to the remote mail transport agent on the desired port with your choice of transport name &quot;label&quot; eg  &quot;delivery_to_remote_mta&quot; or something more specific if you wish.  Also note that it is in the ROUTER section where you specify the remote mail transport agent host name (or IP, but not the connection port to use) in the route_list directive. 

So putting that altogether

transport  delivery_to_remote_mta
                driver = smtp
               port      = 487

Other directives can be supplied to lookup authentication password if required,  remove local header lines if you wish, retwrite header fields if required (so that addresses used are not local ones but are valid for Internet use and if the remote mail transport agent enforces them, uses addersses with the remote transport agent domain name (an anti-spam measure by some ISPs).

The appropriate chapter is the official Exim4 documentation is

                                      Chapter 30 - The smtp transport

(sometimes the chapter number changes when the exim4 version changes because of more sections being added earlier in the manual)

Note that smtp is not the actual &quot;label&quot; name of the transport but the transport type,  determined by which driver the transport uses.]]></description>
			<content:encoded><![CDATA[<p>IT seems that most people do not want to answer this question (perhaps because they do not know the answer) and go into a long diatribe of whataboutery and their arguments about why you should not even attempt to do this.</p>
<p>After much searching I found the answer on the &#8220;nerwbies&#8221; site and on checking the official Exim4 documentation confirmed  hat the answer provided was correct.  The problem with the Exim4 documetnation is that you have to know at least part of the answer before you have some hope of finding the full answer in the relevant section where it is buried with hundreds of other options.</p>
<p>So in order to set the outgoing port for Exim4 to talk to another mail transport agent, the appropriate TRANSPORT has to be used and configured.</p>
<p>This TRANSPORT will use the SMTP drtiver.  The SMTP driver by default uses port 25 of course, but the port directive can be used to chage from the default.</p>
<p>Obviously in the earlier ROUTER section of the configuration you will filter the messages which need to go to the remote mail transport agent on the desired port with your choice of transport name &#8220;label&#8221; eg  &#8220;delivery_to_remote_mta&#8221; or something more specific if you wish.  Also note that it is in the ROUTER section where you specify the remote mail transport agent host name (or IP, but not the connection port to use) in the route_list directive. </p>
<p>So putting that altogether</p>
<p>transport  delivery_to_remote_mta<br />
                driver = smtp<br />
               port      = 487</p>
<p>Other directives can be supplied to lookup authentication password if required,  remove local header lines if you wish, retwrite header fields if required (so that addresses used are not local ones but are valid for Internet use and if the remote mail transport agent enforces them, uses addersses with the remote transport agent domain name (an anti-spam measure by some ISPs).</p>
<p>The appropriate chapter is the official Exim4 documentation is</p>
<p>                                      Chapter 30 &#8211; The smtp transport</p>
<p>(sometimes the chapter number changes when the exim4 version changes because of more sections being added earlier in the manual)</p>
<p>Note that smtp is not the actual &#8220;label&#8221; name of the transport but the transport type,  determined by which driver the transport uses.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Star Wars ASCII Animation Through Telnet by Cody		</title>
		<link>https://logs.paulooi.com/star-wars-ascii-animation-through-telnet.php/comment-page-1#comment-119795</link>

		<dc:creator><![CDATA[Cody]]></dc:creator>
		<pubDate>Thu, 25 Aug 2022 20:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=670#comment-119795</guid>

					<description><![CDATA[Sorry but it&#039;s not true ...

Try telnet -6 on it and it says:

                                                                     
                                                                         
                                                                         
       Well, the IPv6 version is exactly the same as the IPv4 one.       
                                                                         
       The difference is in the visitors...                              
                                                                         
                                                                         
       Je bent een Stoere Bikkel, aka You Rock.]]></description>
			<content:encoded><![CDATA[<p>Sorry but it&#8217;s not true &#8230;</p>
<p>Try telnet -6 on it and it says:</p>
<p>       Well, the IPv6 version is exactly the same as the IPv4 one.       </p>
<p>       The difference is in the visitors&#8230;                              </p>
<p>       Je bent een Stoere Bikkel, aka You Rock.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Exim &#8211; anti-spam per domain setting by dit		</title>
		<link>https://logs.paulooi.com/exim-anti-spam-per-domain-setting.php/comment-page-1#comment-119112</link>

		<dc:creator><![CDATA[dit]]></dc:creator>
		<pubDate>Tue, 31 May 2022 12:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/2008/04/01/exim-anti-spam-per-domain-setting/#comment-119112</guid>

					<description><![CDATA[halu...

nice articles you have here, thanks.

im wondering if you can help me with custom acl.
i want to ratelimit 10/hour outgoing email for gmail.com.
could you please help me on this?

thank you, sir.]]></description>
			<content:encoded><![CDATA[<p>halu&#8230;</p>
<p>nice articles you have here, thanks.</p>
<p>im wondering if you can help me with custom acl.<br />
i want to ratelimit 10/hour outgoing email for gmail.com.<br />
could you please help me on this?</p>
<p>thank you, sir.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Rsync from Remote Server to Synology by Paolo		</title>
		<link>https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php/comment-page-1#comment-117426</link>

		<dc:creator><![CDATA[Paolo]]></dc:creator>
		<pubDate>Wed, 29 Dec 2021 22:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1757#comment-117426</guid>

					<description><![CDATA[I know that this is a very old post, in any case to become root I followed this simple  instructions:
http://louiechristensen.dk/simple-step-by-step-guide-to-getting-root-access-on-a-synology-disk-station/

Hope can be useful.]]></description>
			<content:encoded><![CDATA[<p>I know that this is a very old post, in any case to become root I followed this simple  instructions:<br />
<a href="http://louiechristensen.dk/simple-step-by-step-guide-to-getting-root-access-on-a-synology-disk-station/" rel="nofollow ugc">http://louiechristensen.dk/simple-step-by-step-guide-to-getting-root-access-on-a-synology-disk-station/</a></p>
<p>Hope can be useful.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to Check Paypal Pre-Approved Payment List by Adrita Chakraborty		</title>
		<link>https://logs.paulooi.com/how-to-check-paypal-pre-approved-payment-list.php/comment-page-1#comment-116365</link>

		<dc:creator><![CDATA[Adrita Chakraborty]]></dc:creator>
		<pubDate>Tue, 26 Oct 2021 08:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1429#comment-116365</guid>

					<description><![CDATA[Hey Paul, 

How can I cancel automatic payment with a merchant? Thanks in advance.]]></description>
			<content:encoded><![CDATA[<p>Hey Paul, </p>
<p>How can I cancel automatic payment with a merchant? Thanks in advance.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Enable SMTP Port 587 on Exim by Rob		</title>
		<link>https://logs.paulooi.com/enable-smtp-port-587-on-exim.php/comment-page-1#comment-114847</link>

		<dc:creator><![CDATA[Rob]]></dc:creator>
		<pubDate>Tue, 22 Jun 2021 21:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=924#comment-114847</guid>

					<description><![CDATA[This only enables INcoming connections to Exim on port 587.

How to force Exim to use port 587, instead of port 25, when Exim itself needs to connect to another smtp server?]]></description>
			<content:encoded><![CDATA[<p>This only enables INcoming connections to Exim on port 587.</p>
<p>How to force Exim to use port 587, instead of port 25, when Exim itself needs to connect to another smtp server?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
