<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title>www.ritlabs.com [Topic: Removing addresses from recipients when doing Reply-To]</title>
		<link>http://www.ritlabs.com</link>
		<description>New posts in Removing addresses from recipients when doing Reply-To of  forum at www.ritlabs.com [www.ritlabs.com]</description>
		<language>en</language>
		<docs>http://backend.userland.com/rss2</docs>
		<lastBuildDateTag>Sun, 12 Nov 2023 22:55:52 +0200</lastBuildDateTag>		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55882/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			Beautiful! Thank you for the refactoring and documentation. I can confirm that it works as well as the previous version. <br />
			<i>12 November 2023 22:55:52, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55882/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55882/</guid>
			<pubDate>Sun, 12 Nov 2023 22:55:52 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55881/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			I slightly modified the <B>Alias_Del</B> template and added a new <B>Address_Del</B> template to make it more generalized. The Address_Del template is called from the Alias_Del template. The <B>Alias_Del</B> template is now following:<br />
====code====
<pre>Hello %OFromFName,
&nbsp;&nbsp;
%Cursor
&nbsp;&nbsp;
%ODateEn, %OTimeLongEn, you wrote:
&nbsp;&nbsp;
%Quotes
&nbsp;&nbsp;
-- 
Best regards,
%FromName
%SetHeader('To','%OFromName &#60;%OFromAddr&#62;')%-
%SetHeader('Cc','')%-
%_CC='%OToList, %OCCList'%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias1@domain1&#92;.com(&#62;)?(,&#92;s)?)(.*)"%-
%QT(Address_Del, "%_RE1")%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias2@domain2&#92;.com(&#62;)?(,&#92;s)?)(.*)"%-
%QT(Address_Del, "%_RE1")%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias3@domain3&#92;.pl(&#62;)?(,&#92;s)?)(.*)"%-
%QT(Address_Del, "%_RE1")%-
%SetHeader('Cc','%_CC')%-</pre>
=============
<br />And here is the <B>Address_Del</B> template:<br />
====code====
<pre>%_CC(%ReplaceRegExp("%_1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-</pre>
=============
<br />Perhaps it will be easier for you to modify the templates yourself if I explain the meaning of each entry.<br /><br />The initial lines in the <B>Alias_Del</B> template up to the <span class="bx-font" style="color:#0000ff">%FromName</span> macro are a copy of the default response template from The Bat! account. You can modify it freely because it formats only the content of the response without interfering with the recipient lists.<br /><br />The next macro <span class="bx-font" style="color:#0000ff">%SetHeader(&#39;To&#39;,&#39;%OFromName &lt;%OFromAddr&gt;&#39;)</span> defines the contents of the &quot;<B>To</B>&quot; field in the response. I assume that only the sender of the original message will appear here. The <span class="bx-font" style="color:#0000ff">%SetHeader(&#39;Cc&#39;,&#39;&#39;)</span> macro is used to clear the &quot;<B>Cc</B>&quot; field of the response being created. The remaining recipients appear in the &quot;To&quot; and &quot;Cc&quot; fields of the original message. They are collected in a common list, which is the value of the <B>%_CC</B> variable (macro <span class="bx-font" style="color:#0000ff">%_CC=&#39;%OToList, %OCCList&#39;</span>).<br /><br />Next comes the definition of a regular expression, which will be stored in the %_RE1 variable. The individual elements of this expression can be explained as follows:<br /><B>(?ism) </B>- these are search options used in regular expressions (e.g. case insensitive, multi-line search, etc.)<br /><B>(.*(,\s)+)*</B> - text preceding the searched e-mail address, i.e. a string of arbitrary characters symbolized by &quot;<B>.*</B>&quot;, followed by one comma with a space symbolized by <B>(,\s)+</B><br /><B>(.*alias1@domain1\.com(&gt;)?(,\s)?)</B> - the address you are looking for, preceded by any number of characters and ending with the optional &quot;&gt;&quot; character, i.e. <B>(&gt;)?</B>, and a comma with a space <B>(,\ s)?</B>.<br /><B>(.*) </B>- any text that may follow the searched address.<br /><br />The regular expression defined in this way is sent to the <B>Address_Del </B>template as an argument: <span class="bx-font" style="color:#0000ff">%QT(Address_Del, &quot;%_RE1&quot;)</span>. In this template, the list of recipients contained in the <B>%_CC</B> variable is properly processed. First, the requested address sent to the template as an argument is removed and <span class="bx-font" style="color:#0000ff">%ReplaceRegExp(&quot;%_1&quot;, &quot;&quot;, &quot;%_CC&quot;, 3)</span> is used to do this. This macro looks up the requested address in the <B>%_CC</B> variable based on the regular expression provided and replaces it with the empty string <B>&quot;&quot;</B>. Then the value of the variable is modified and from that moment on it no longer contains the address we are looking for.<br /><br />It may happen that a &quot;<I>comma,space</I>&quot; pair remains at the end of the list of recipients and three more macros are used to optionally remove it:<br /><span class="bx-font" style="color:#0000ff">%SetpattRegExp=&quot;(?ismU)(.*)(,\s)*$&quot;%-</span><br /><span class="bx-font" style="color:#0000ff">%RegExpBlindMatch(%_CC)%-</span><br /><span class="bx-font" style="color:#0000ff">%_CC(%SubPatt(1))%-</span><br /><br />The <B>Address_Del</B> template <B>is called three times</B> from the <B>Alias_Del</B> template. Each call is preceded by an appropriate definition of the <B>%_RE1</B> variable, in which the address to be removed should be placed. Finally, the &quot;Cc&quot; field in the created response is modified, giving it the value of the <B>%_CC</B> variable - macro <span class="bx-font" style="color:#0000ff">%SetHeader(&#39;Cc&#39;,&#39;%_CC&#39;)</span>. <br />
			<i>12 November 2023 14:46:16, <a href="http://www.ritlabs.com/en/forums/">Zygmunt Wereszczyński</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55881/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55881/</guid>
			<pubDate>Sun, 12 Nov 2023 14:46:16 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55879/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			Zygmunt, you just made my life complete &nbsp;:D &nbsp;Works like a charm. Made a keyboard shortcut for it to avoid additional clicks (and misclicks).<br /><br />EDIT: I needed to make a small adjustment by also removing my main address in the same way as the aliases. Otherwise, in some situations the Reply-All would include my original address in the recipients. <br />
			<i>11 November 2023 23:51:57, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55879/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55879/</guid>
			<pubDate>Sat, 11 Nov 2023 23:51:57 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55877/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			Unfortunately, I am not able to solve the problem of different behaviour of The Bat! in Reply and Reply-All procedures. However, I have found another solution that uses the modified <B>Alias_Del</B> template to delete aliases in Reply-All only message. Here is the solution:<br /><br />The Bat! has &quot;<B>Reply to All</B>&quot; button on the <B>Standard </B>toolbar. With this button is associated the drop-down list of Quick Templates which have the <B>Use for Reply Messages</B> option set. So, <U>you should set this option in Alias_Del template</U>.<br /><br />Then, using this &quot;<B>Reply to All</B>&quot; button with <B>Alias_Del</B> template selected from the list it is possible to have desired reesult. If the button is used without template, then classic Reply to All will be generated.<br /><br />Of course, in the modified <B>Alias_Del </B>template should be also present the default reply template copied from account properties. This is needed to generate common reply text. I added the standard reply template before the macros used to remove aliases. Here is the modified <B>Alias_Del</B> template:<br /><br />
====code====
<pre>Hello %OFromFName,
&nbsp;&nbsp;
%Cursor
&nbsp;&nbsp;
%ODateEn, %OTimeLongEn, you wrote:
&nbsp;&nbsp;
%Quotes
&nbsp;&nbsp;
-- 
Best regards,
%FromName
%SetHeader('To','%OFromName &#60;%OFromAddr&#62;')%-
%SetHeader('Cc','')%-
%_CC='%OToList, %OCCList'%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias1@dom1&#92;.dom2&#92;.dom3&#92;.dom4(&#62;)?(,&#92;s)?)(.*)"%-
%_CC(%ReplaceRegExp("%_RE1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias2@dom1&#92;.dom4(&#62;)?(,&#92;s)?)(.*)"%-
%_CC(%ReplaceRegExp("%_RE1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-
%SetHeader('Cc','%_CC')%-</pre>
=============
<br />I hope such solution will work exactly as you need. <br />
			<i>11 November 2023 00:58:44, <a href="http://www.ritlabs.com/en/forums/">Zygmunt Wereszczyński</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55877/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55877/</guid>
			<pubDate>Sat, 11 Nov 2023 00:58:44 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55875/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			I spoke a bit too soon. One thing needs to be adjusted in order for the template to fully work for me.<br /><br />As I described above, when I do a Reply-All TB puts all addresses in the To field, leaving CC empty. It wasn&#39;t always like that, but from some relatively recent version it is.<br /><br />Now that I have a better understanding what the script does, I concur that the initial If which checks whether %CC is empty fails to distinguish between Reply and Reply-All. If I leave the If in the Reply template, the script is never triggered, and if I remove it the script is always triggered, messing up regular Reply-s.<br /><br />In order for the whole thing to work properly, I think one of two things needs to happen (and I failed at both):<br /><br />1. Somehow revert TB to the old behavior of putting addresses in the CC field when performing a Reply-All. In this case the solution should work as is.<br /><br />OR<br /><br />2. Find a way to determine whether there are multiple recipients in the To field, replacing the initial If with this test.<br /><br />Help? <br />
			<i>10 November 2023 16:59:42, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55875/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55875/</guid>
			<pubDate>Fri, 10 Nov 2023 16:59:42 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55874/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			Does the job perfectly. Just wow! Thank you Zygmunt for ridding me of this annoyance.<br /><br />OK, it didn&#39;t work at first. It seems to me the reason was that TB puts all addresses in the To field when doing Reply-All, instead of using both To and CC. TB wasn&#39;t always like that, the behavior started relatively recently.<br /><br />The trick was to call the second posted script without the If, just %QT(Alias_Del), so it runs even if the CC field is empty. I tested with several dozen e-mails, the desired recipient lists are always produced. The script even nicely rearranges the recipients into appropriate To and CC fields, which I find more appropriate. <br />
			<i>10 November 2023 14:04:52, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55874/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55874/</guid>
			<pubDate>Fri, 10 Nov 2023 14:04:52 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55872/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			Amazing.. great job Zygmunt!! <br /><br />I have a great admiration for people who speak RegEx. Somehow it's just too abstract for me to wrap my head around (I have the same problem with 'C'). <br />
			<i>10 November 2023 00:05:33, <a href="http://www.ritlabs.com/en/forums/">Daniel van Rooijen</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55872/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55872/</guid>
			<pubDate>Fri, 10 Nov 2023 00:05:33 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55871/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			I see my template has some glitches, so I repeated check and slightly modified it to the following:<br />
====code====
<pre>%SetHeader('To','%OFromName &#60;%OFromAddr&#62;')%-
%SetHeader('Cc','')%-
%If:%OCC&#60;&#62;""%-
:%_CC='%OTo, %OCC'%-
:%_CC='%OTo'%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias1@dom1&#92;.dom2&#92;.dom3&#92;.dom4(&#62;)?(,&#92;s)?)(.*)"%-
%_CC(%ReplaceRegExp("%_RE1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias2@dom1&#92;.dom4(&#62;)?(,&#92;s)?)(.*)"%-
%_CC(%ReplaceRegExp("%_RE1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-
%SetHeader('Cc','')%-
%SetHeader('Cc','%_CC')%-</pre>
=============
<br />Calling this template from account (or folder) reply template is now following:<br /><br />
====code====
<pre>%If:%CC&#60;&#62;""%-
:'%QT("Alias_Del")'%-</pre>
=============
<br />Please check if it works correctly. <br />
			<i>09 November 2023 23:09:08, <a href="http://www.ritlabs.com/en/forums/">Zygmunt Wereszczyński</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55871/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55871/</guid>
			<pubDate>Thu, 09 Nov 2023 23:09:08 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55869/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			I have developed quick template with identifier &quot;<B>Alias_Del</B>&quot; that you should call from the reply template of your account using <B>%QT(Alias_Del)</B> macro. This template check if &quot;CC&quot; field in reply is empty (as in the case of &quot;normal&#39; replies), and if it is not, then aliases are removed. Here is the template:<br />
====code====
<pre>%If:%CC&#60;&#62;""%-
:^%SetHeader('To','%OFromName &#60;%OFromAddr&#62;')%-
%SetHeader('Cc','')%-
%If:%OCC&#60;&#62;""%-
:%_CC='%OTo, %OCC'%-
:%_CC='%OTo'%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias1@dom1&#92;.dom2&#92;.dom3&#92;.dom4(&#62;)?(,&#92;s)?)(.*)"%-
%_CC(%ReplaceRegExp("%_RE1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-
%_RE1="(?ism)(.*(,&#92;s)+)*(.*alias2@dom1&#92;.dom4(&#62;)?(,&#92;s)?)(.*)"%-
%_CC(%ReplaceRegExp("%_RE1", "", "%_CC", 3))%-
%SetpattRegExp="(?ismU)(.*)(,&#92;s)*$"%-
%RegExpBlindMatch(%_CC)%-
%_CC(%SubPatt(1))%-
%SetHeader('Cc','%_CC')%-^
:^^</pre>
=============
Please note that aliases are written here using regex convention, i.e. instead of <span class="bx-font" style="color:#ff0000"><B>&quot;.&quot;</B></span> in domain name the <B><span class="bx-font" style="color:#ff0000">&quot;\.&quot;</span></B> is used (for example &quot;<B><span class="bx-font" style="color:#ff0000">alias1@dom1\.dom2\.dom3\.dom4</span></B>&quot;). It does not matter the format of the aliase, only pure e-mail address is sufficient (without names). <br />
			<i>09 November 2023 18:46:11, <a href="http://www.ritlabs.com/en/forums/">Zygmunt Wereszczyński</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55869/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55869/</guid>
			<pubDate>Thu, 09 Nov 2023 18:46:11 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55867/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			<br />====quote====<br /><a class="blog-p-user-name" id="bp_hQl2v2Z3" href="/en/forums/" bx-tooltip-user-id="132500">Zygmunt Wereszczyński</a> wrote:<br />Oh, I see it. Several months ago I solved similar problem with removing and adding addesses in reply-all mails. See &nbsp;<noindex><a href="https://www.ritlabs.com/ru/forums/forum2/topic15911/message54722/#message54722" target="_blank" rel="nofollow">https://www.ritlabs.com/ru/forums/forum2/topic15911/message54722/#message54722</a></noindex> &nbsp;(in Russian). I will try to modify templates given in that post and present the solution.<br />=============<br /><br />Whoah! Never in a million years could I have come up with something like that. Thanks.<br /><br /><br />====quote====<br />1. Are your aliases in received messages written in full format, i.e. &quot;Full Name&quot; &nbsp;<noindex><a href="mailto:alias1@mail.domain" target="_blank" rel="nofollow">alias1@mail.domain</a></noindex> &gt;? Please give the example of such addressing in your e-mails (of course, all personal data should be removed).<br />=============<br /><br />Sometimes in full format, sometimes just the address. I&#39;ll try to give examples of both types and be precise as possible:<br /><br />Type A: &quot;Milos Radovanovic&quot; &lt;<noindex><a href="mailto:alias1@dom1.dom2.dom3.dom4" target="_blank" rel="nofollow">alias1@dom1.dom2.dom3.dom4</a></noindex>&gt; or Milos Radovanovic &lt;<noindex><a href="mailto:alias1@dom1.dom2.dom3.dom4" target="_blank" rel="nofollow">alias1@dom1.dom2.dom3.dom4</a></noindex>&gt; or just <noindex><a href="mailto:alias1@dom1.dom2.dom3.dom4" target="_blank" rel="nofollow">alias1@dom1.dom2.dom3.dom4</a></noindex><br /><br />Type B: &quot;Milos Radovanovic&quot; &lt;<noindex><a href="mailto:alias1@dom1.dom2.dom3.dom4" target="_blank" rel="nofollow">alias2@dom1.dom4</a></noindex>&gt; or Milos Radovanovic &lt;<noindex><a href="mailto:alias1@dom1.dom2.dom3.dom4" target="_blank" rel="nofollow">alias2@dom1.dom4</a></noindex>&gt; or just <noindex><a href="mailto:alias1@dom1.dom2.dom3.dom4" target="_blank" rel="nofollow">alias2@dom1.dom4</a></noindex><br /><br />(dom1 and dom4 from Type A and B are equal strings)<br /><br />My name can also be spelt with what some call &quot;funny letters&quot;: Miloš Radovanović.<br /><br /><br />====quote====<br />2. Are the cases when both aliases are used in received messages?<br />=============<br /><br />No. <br />
			<i>09 November 2023 16:52:01, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55867/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55867/</guid>
			<pubDate>Thu, 09 Nov 2023 16:52:01 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55863/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			<br />====quote====<br /><a class="blog-p-user-name" id="bp_LaBM60v6" href="/en/forums/" bx-tooltip-user-id="128897">Miloš Radovanović</a> wrote:<br /><br />And yes, if the original problem was with Reply-To, your suggestion would have been a very probable solution. But for Reply-All in my case it doesn&#39;t do the trick.<br />=============<br />Oh, I see it. Several months ago I solved similar problem with removing and adding addesses in reply-all mails. See <noindex><a href="https://www.ritlabs.com/ru/forums/forum2/topic15911/message54722/#message54722" target="_blank" rel="nofollow">https://www.ritlabs.com/ru/forums/forum2/topic15911/message54722/#message54722</a></noindex> (in Russian). I will try to modify templates given in that post and present the solution.<br /><br />My questions:<br /><br />1. Are your aliases in received messages written in full format, i.e. &quot;Full Name&quot; &lt;<noindex><a href="mailto:alias1@mail.domain" target="_blank" rel="nofollow">alias1@mail.domain</a></noindex>&gt;? Please give the example of such addressing in your e-mails (of course, all personal data should be removed).<br /><br />2. Are the cases when both aliases are used in received messages? <br />
			<i>09 November 2023 12:24:58, <a href="http://www.ritlabs.com/en/forums/">Zygmunt Wereszczyński</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55863/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55863/</guid>
			<pubDate>Thu, 09 Nov 2023 12:24:58 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55862/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			<br />====quote====<br /><a class="blog-p-user-name" id="bp_I4heqsMH" href="/en/forums/" bx-tooltip-user-id="132500">Zygmunt Wereszczyński</a> wrote:<br />Please check your entry in Address Book. If you have two aliases in this entry, then probably you have set the option &quot;Automatically add secondary addresses to the following field:&quot;. Try to set this to &quot;Don&#39;t add&quot;.<br />=============<br /><br />Thanks, but:<B> Argh, I just noticed I didn&#39;t express the question properly. (SORRY!)</B> &quot;Reply-To&quot; from my first post should read &quot;Reply-All&quot;. So, the Reply-All operation picks up my alias address from the list of recipients of the message being replied-all to, and includes it in the recipients of the reply. I want to tell TB not to do that.<br /><br />And yes, if the original problem was with Reply-To, your suggestion would have been a very probable solution. But for Reply-All in my case it doesn&#39;t do the trick. <br />
			<i>09 November 2023 10:54:34, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55862/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55862/</guid>
			<pubDate>Thu, 09 Nov 2023 10:54:34 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55856/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			Please check your entry in Address Book. If you have two aliases in this entry, then probably you have set the option &quot;<B>Automatically add secondary addresses to the following field:</B>&quot;. Try to set this to &quot;<B>Don&#39;t add</B>&quot;. <br />
			<i>08 November 2023 18:48:53, <a href="http://www.ritlabs.com/en/forums/">Zygmunt Wereszczyński</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55856/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55856/</guid>
			<pubDate>Wed, 08 Nov 2023 18:48:53 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
		<item>
			<title>Removing addresses from recipients when doing Reply-To</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum6/topic16190/message55852/">Removing addresses from recipients when doing Reply-To</a></b> in forum <a href="http://www.ritlabs.com/en/forums/forum6/">The Bat! - Templates and Macros</a>. <br />
			I&#39;ve been looking through available TB macros, and I can&#39;t figure this one out: I would like to tell TB to do this: &quot;When performing Reply-To, never include these two e-mail addresses among the recipients.&quot; Is this possible?<br /><br />Motivation: the mail server has two alias e-mail addresses that point to the same inbox of my main address. So, when someone sends me a message to one of the alias addresses and I do a Reply-To, the reply will also be sent to myself (the alias address) unless I manually delete it from the recipients, of course.<br /><br />I can think of a workaround: create a filter which detects such replies of mine and deletes them upon arrival. But, is it possible to tell TB not to send such messages to my alias addresses at all?<br /><br /><B>EDIT: Not Reply-To, I meant Reply-All</B> <br />
			<i>08 November 2023 15:58:15, <a href="http://www.ritlabs.com/en/forums/">Miloš Radovanović</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum6/topic16190/message55852/</link>
			<guid>http://www.ritlabs.com/en/forums/forum6/topic16190/message55852/</guid>
			<pubDate>Wed, 08 Nov 2023 15:58:15 +0200</pubDate>
			<category>The Bat! - Templates and Macros</category>
		</item>
	</channel>
</rss>
