<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-3134</id>
	<title>Nabble - CGI Tools/Libraries</title>
	<updated>2009-11-28T02:13:03Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/CGI-Tools-Libraries-f3134.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CGI-Tools-Libraries-f3134.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26551768</id>
	<title>[Nms-cgi-support] Bad Referer - Access Denied</title>
	<published>2009-11-28T02:13:03Z</published>
	<updated>2009-11-28T02:13:03Z</updated>
	<author>
		<name>Roy 2k</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;Roy (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26551768&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;roy2k@...&lt;/a&gt;) on Saturday, November 28, 2009 at 10:13:03
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: I have confirmed both the path to Perl and SendMail with my host. I still get the error: 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Bad Referrer - Access Denied 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;The form attempting to use this script resides at &lt;a href=&quot;http://celebtips.info/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://celebtips.info/&lt;/a&gt;, which is not allowed to access this program. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;If you are attempting to configure FormMail to run with this form, you need to add the following to @referers, explained in detail in the README file. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Add 'celebtips.info' to your @referers array. &amp;nbsp;
&lt;br&gt;------------------------------------------------------------------------ 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Here is the link to my form: &lt;a href=&quot;http://celebtips.info/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://celebtips.info/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Here is the edited code in my FormMail.pl file: 
&lt;br&gt;#!/usr/bin/perl -wT 
&lt;br&gt;# 
&lt;br&gt;# NMS FormMail Version 3.12c1 
&lt;br&gt;# 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;use strict; 
&lt;br&gt;use vars qw( 
&lt;br&gt;&amp;nbsp; $DEBUGGING $emulate_matts_code $secure %more_config 
&lt;br&gt;&amp;nbsp; $allow_empty_ref $max_recipients $mailprog @referers 
&lt;br&gt;&amp;nbsp; @allow_mail_to @recipients %recipient_alias 
&lt;br&gt;&amp;nbsp; @valid_ENV $date_fmt $style $send_confirmation_mail 
&lt;br&gt;&amp;nbsp; $confirmation_text $locale $charset $no_content 
&lt;br&gt;&amp;nbsp; $double_spacing $wrap_text $wrap_style $postmaster 
&lt;br&gt;); 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;# PROGRAM INFORMATION 
&lt;br&gt;# ------------------- 
&lt;br&gt;# FormMail.pl Version 3.12c1 
&lt;br&gt;# 
&lt;br&gt;# This program is licensed in the same way as Perl 
&lt;br&gt;# itself. You are free to choose between the GNU Public 
&lt;br&gt;# License &amp;lt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/a&gt;&amp;gt; &amp;nbsp;or 
&lt;br&gt;# the Artistic License 
&lt;br&gt;# &amp;lt;&lt;a href=&quot;http://www.perl.com/pub/a/language/misc/Artistic.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.perl.com/pub/a/language/misc/Artistic.html&lt;/a&gt;&amp;gt; 
&lt;br&gt;# 
&lt;br&gt;# For help on configuration or installation see the 
&lt;br&gt;# README file or the POD documentation at the end of 
&lt;br&gt;# this file. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;# USER CONFIGURATION SECTION 
&lt;br&gt;# -------------------------- 
&lt;br&gt;# Modify these to your own settings. You might have to 
&lt;br&gt;# contact your system administrator if you do not run 
&lt;br&gt;# your own web server. If the purpose of these 
&lt;br&gt;# parameters seems unclear, please see the README file. 
&lt;br&gt;# 
&lt;br&gt;BEGIN 
&lt;br&gt;{ 
&lt;br&gt;&amp;nbsp; $DEBUGGING &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 1; 
&lt;br&gt;&amp;nbsp; $emulate_matts_code= 0; 
&lt;br&gt;&amp;nbsp; $secure &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 1; 
&lt;br&gt;&amp;nbsp; $allow_empty_ref &amp;nbsp; = 1; 
&lt;br&gt;&amp;nbsp; $max_recipients &amp;nbsp; &amp;nbsp;= 2; 
&lt;br&gt;&amp;nbsp; $mailprog &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '/usr/sbin/sendmail -t -f roy____'; 
&lt;br&gt;&amp;nbsp; $postmaster &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26551768&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;_____@...&lt;/a&gt;'; 
&lt;br&gt;&amp;nbsp; @referers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= qw(celebtips.info); 
&lt;br&gt;&amp;nbsp; @allow_mail_to &amp;nbsp; &amp;nbsp; = qw(&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26551768&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;_____@...&lt;/a&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26551768&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;_____@...&lt;/a&gt;); 
&lt;br&gt;&amp;nbsp; @recipients &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= (); 
&lt;br&gt;&amp;nbsp; %recipient_alias &amp;nbsp; = (); 
&lt;br&gt;&amp;nbsp; @valid_ENV &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = qw(REMOTE_HOST REMOTE_ADDR REMOTE_USER HTTP_USER_AGENT); 
&lt;br&gt;&amp;nbsp; $locale &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= ''; 
&lt;br&gt;&amp;nbsp; $charset &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 'iso-8859-1'; 
&lt;br&gt;&amp;nbsp; $date_fmt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '%A, %B %d, %Y at %I:%M:%S %p'; 
&lt;br&gt;&amp;nbsp; $style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = '0'; 
&lt;br&gt;&amp;nbsp; $no_content &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0; 
&lt;br&gt;&amp;nbsp; $double_spacing &amp;nbsp; &amp;nbsp;= 0; 
&lt;br&gt;&amp;nbsp; $wrap_text &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 0; 
&lt;br&gt;&amp;nbsp; $wrap_style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 1; 
&lt;br&gt;&amp;nbsp; $send_confirmation_mail = 0; 
&lt;br&gt;&amp;nbsp; $confirmation_text = &amp;lt;&amp;lt;'END_OF_CONFIRMATION'; 
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26551768&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;______@...&lt;/a&gt; 
&lt;br&gt;Subject: form submission 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thank you for your form submission. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;END_OF_CONFIRMATION 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I give up. 
&lt;br&gt;Thanks for your help. 
&lt;br&gt;Roy 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;enable: on
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Bad-Referer---Access-Denied-tp26551768p26551768.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26550397</id>
	<title>Re: [Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-27T20:13:10Z</published>
	<updated>2009-11-27T20:13:10Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Fri, Nov 27, 2009 at 1:22 AM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26550397&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26550397&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Todd,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is weird.  I retyped the email addresses
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26550397&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt; and &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26550397&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt; into the
&lt;br&gt;&amp;gt; script.  Now the script works fine.  I checked and rechecked for typos
&lt;br&gt;&amp;gt; in the earlier file but found none.  I had also checked to make sure
&lt;br&gt;&amp;gt; that the ncasciani email address was working by sending a test email to
&lt;br&gt;&amp;gt; it from my email client; it worked ok.
&lt;br&gt;&lt;br&gt;Hmm. Weird. Glad you got it working.
&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26550397.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26539189</id>
	<title>Re: [Nms-cgi-support] Formmail</title>
	<published>2009-11-27T00:24:14Z</published>
	<updated>2009-11-27T00:24:14Z</updated>
	<author>
		<name>Brad-103</name>
	</author>
	<content type="html">Todd,
&lt;br&gt;&lt;br&gt;Sorry, I left out the key word - Subject. &amp;nbsp;I am looking to change the
&lt;br&gt;Subject line of the the return email with data from the data input fields of
&lt;br&gt;the form. Example: Subject: 1994 Ford Explorer Fender.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Brad
&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 11:29 PM, Todd Alan Smith &amp;lt;
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26539189&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tas-nms-cgi-support@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 11:40 PM, Brad &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26539189&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dxb147@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;&amp;gt; &amp;gt; Brad (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26539189&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dxb147@...&lt;/a&gt;) on Thursday, November 26, 2009 at 04:40:15
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; description: Hello. &amp;nbsp;I am trying to pass data from some of the fields in
&lt;br&gt;&amp;gt; the form. &amp;nbsp;Example: 1994 Ford Explorer Fender instead of WWW Web Submission
&lt;br&gt;&amp;gt; which I think is the default. &amp;nbsp;I did this before but I have forgotten.
&lt;br&gt;&amp;gt; Appreciate any help.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Brad, I'm not following you. Please be more specific.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Todd
&lt;br&gt;&amp;gt;
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Formmail-tp26524281p26539189.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26538329</id>
	<title>Re: [Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-26T22:22:14Z</published>
	<updated>2009-11-26T22:22:14Z</updated>
	<author>
		<name>arnie@arnie.net</name>
	</author>
	<content type="html">Todd,
&lt;br&gt;&lt;br&gt;This is weird. &amp;nbsp;I retyped the email addresses 
&lt;br&gt;(&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt; and &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt; into the 
&lt;br&gt;script. &amp;nbsp;Now the script works fine. &amp;nbsp;I checked and rechecked for typos 
&lt;br&gt;in the earlier file but found none. &amp;nbsp;I had also checked to make sure 
&lt;br&gt;that the ncasciani email address was working by sending a test email to 
&lt;br&gt;it from my email client; it worked ok.
&lt;br&gt;&lt;br&gt;I guess FormMail.pl works in mysterious was. &amp;nbsp;Thank you for looking into 
&lt;br&gt;this for me. &amp;nbsp;Especially on the Thanksgiving holiday.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&lt;br&gt;Arnie McGall
&lt;br&gt;&lt;br&gt;&lt;br&gt;Todd Alan Smith wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 11:25 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Following your example in the examples.txt file for sending a form email
&lt;br&gt;&amp;gt;&amp;gt; to two recipients I used the following parameter in the %recipient_alias
&lt;br&gt;&amp;gt;&amp;gt; portion of the script:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; %recipient_alias &amp;nbsp; = (
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;'comment-recipients' &amp;nbsp;=&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt;',
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;);
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; However, the email is only sent to the first email address
&lt;br&gt;&amp;gt;&amp;gt; (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538329&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;). &amp;nbsp;I assume there is an error in the example
&lt;br&gt;&amp;gt;&amp;gt; shown in the exmples.txt file which accompanied the
&lt;br&gt;&amp;gt;&amp;gt; formmail_compat-3.14c1.zip downloadable package from your web site.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Arnold, the examples are correct. Please reply with the USER
&lt;br&gt;&amp;gt; CONFIGURATION SECTION of your FormMail.pl file, as well as the URL for
&lt;br&gt;&amp;gt; the form page in question. We'll have a look.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Todd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26538329.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26538210</id>
	<title>Re: [Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-26T22:00:24Z</published>
	<updated>2009-11-26T22:00:24Z</updated>
	<author>
		<name>arnie@arnie.net</name>
	</author>
	<content type="html">I tried two different addresses, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538210&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;quork@...&lt;/a&gt; and &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538210&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;. &amp;nbsp;
&lt;br&gt;This time, both were sent. &amp;nbsp;Is it possible that the 
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538210&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt; address is too long?
&lt;br&gt;&lt;br&gt;Arnie
&lt;br&gt;&lt;br&gt;Todd Alan Smith wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Thu, Nov 26, 2009 at 11:31 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538210&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538210&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Hi Todd, &amp;nbsp;The URL for the form page is:
&lt;br&gt;&amp;gt;&amp;gt; htto://www.pittsfordwine.com/contactus.html
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hmm. That's odd. Everything looks fine. Perhaps test with two
&lt;br&gt;&amp;gt; more/different addresses?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26538210.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26538008</id>
	<title>Re: [Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-26T21:15:50Z</published>
	<updated>2009-11-26T21:15:50Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Thu, Nov 26, 2009 at 11:31 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538008&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26538008&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi Todd,  The URL for the form page is:
&lt;br&gt;&amp;gt; htto://www.pittsfordwine.com/contactus.html
&lt;br&gt;&lt;br&gt;Hmm. That's odd. Everything looks fine. Perhaps test with two
&lt;br&gt;more/different addresses?
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26538008.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537850</id>
	<title>Re: [Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-26T20:31:45Z</published>
	<updated>2009-11-26T20:31:45Z</updated>
	<author>
		<name>arnie@arnie.net</name>
	</author>
	<content type="html">Hi Todd, &amp;nbsp;The URL for the form page is: &amp;nbsp;
&lt;br&gt;htto://www.pittsfordwine.com/contactus.html
&lt;br&gt;&lt;br&gt;The configuration section of the FormMail.pl file is as follows:
&lt;br&gt;&lt;br&gt;#!/usr/bin/perl
&lt;br&gt;#
&lt;br&gt;# NMS FormMail Version 3.14c1
&lt;br&gt;#
&lt;br&gt;&lt;br&gt;use strict;
&lt;br&gt;use vars qw(
&lt;br&gt;&amp;nbsp; $DEBUGGING $emulate_matts_code $secure %more_config
&lt;br&gt;&amp;nbsp; $allow_empty_ref $max_recipients $mailprog @referers
&lt;br&gt;&amp;nbsp; @allow_mail_to @recipients %recipient_alias
&lt;br&gt;&amp;nbsp; @valid_ENV $date_fmt $style $send_confirmation_mail
&lt;br&gt;&amp;nbsp; $confirmation_text $locale $charset $no_content
&lt;br&gt;&amp;nbsp; $double_spacing $wrap_text $wrap_style $postmaster
&lt;br&gt;&amp;nbsp; $address_style
&lt;br&gt;);
&lt;br&gt;&lt;br&gt;# PROGRAM INFORMATION
&lt;br&gt;# -------------------
&lt;br&gt;# FormMail.pl Version 3.14c1
&lt;br&gt;#
&lt;br&gt;# This program is licensed in the same way as Perl
&lt;br&gt;# itself. You are free to choose between the GNU Public
&lt;br&gt;# License &amp;lt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/a&gt;&amp;gt; &amp;nbsp;or
&lt;br&gt;# the Artistic License
&lt;br&gt;# &amp;lt;&lt;a href=&quot;http://www.perl.com/pub/a/language/misc/Artistic.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.perl.com/pub/a/language/misc/Artistic.html&lt;/a&gt;&amp;gt;
&lt;br&gt;#
&lt;br&gt;# For help on configuration or installation see the
&lt;br&gt;# README file or the POD documentation at the end of
&lt;br&gt;# this file.
&lt;br&gt;&lt;br&gt;# USER CONFIGURATION SECTION
&lt;br&gt;# --------------------------
&lt;br&gt;# Modify these to your own settings. You might have to
&lt;br&gt;# contact your system administrator if you do not run
&lt;br&gt;# your own web server. If the purpose of these
&lt;br&gt;# parameters seems unclear, please see the README file.
&lt;br&gt;#
&lt;br&gt;BEGIN
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; $DEBUGGING &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 0;
&lt;br&gt;&amp;nbsp; $emulate_matts_code= 0;
&lt;br&gt;&amp;nbsp; $secure &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 1;
&lt;br&gt;&amp;nbsp; $allow_empty_ref &amp;nbsp; = 1;
&lt;br&gt;&amp;nbsp; $max_recipients &amp;nbsp; &amp;nbsp;= 3;
&lt;br&gt;&amp;nbsp; $mailprog &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '/usr/sbin/sendmail -oi -t -f 
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;';
&lt;br&gt;&amp;nbsp; $postmaster &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;webmaster@...&lt;/a&gt;';
&lt;br&gt;&amp;nbsp; @referers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= ('pittsfordwine.com');
&lt;br&gt;&amp;nbsp; @allow_mail_to &amp;nbsp; &amp;nbsp; = qw();
&lt;br&gt;&amp;nbsp; @recipients &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= ();
&lt;br&gt;&amp;nbsp; %recipient_alias &amp;nbsp; = (
&lt;br&gt;&amp;nbsp; 'comment-recipients' &amp;nbsp;=&amp;gt; 
&lt;br&gt;'&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt;',
&lt;br&gt;&amp;nbsp; &amp;nbsp; );
&lt;br&gt;&amp;nbsp; @valid_ENV &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = qw(REMOTE_HOST REMOTE_ADDR REMOTE_USER 
&lt;br&gt;HTTP_USER_AGENT);
&lt;br&gt;&amp;nbsp; $locale &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '';
&lt;br&gt;&amp;nbsp; $charset &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 'iso-8859-1';
&lt;br&gt;&amp;nbsp; $date_fmt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '%A, %B %d, %Y at %H:%M:%S';
&lt;br&gt;&amp;nbsp; $style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = '/css/nms.css';
&lt;br&gt;&amp;nbsp; $no_content &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0;
&lt;br&gt;&amp;nbsp; $double_spacing &amp;nbsp; &amp;nbsp;= 1;
&lt;br&gt;&amp;nbsp; $wrap_text &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 1;
&lt;br&gt;&amp;nbsp; $wrap_style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 1;
&lt;br&gt;&amp;nbsp; $address_style &amp;nbsp; &amp;nbsp; = 0;
&lt;br&gt;&amp;nbsp; $send_confirmation_mail = 0;
&lt;br&gt;&amp;nbsp; $confirmation_text = &amp;lt;&amp;lt;'END_OF_CONFIRMATION';
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;
&lt;br&gt;Subject: form submission
&lt;br&gt;&lt;br&gt;Thank you for your form submission.
&lt;br&gt;&lt;br&gt;END_OF_CONFIRMATION
&lt;br&gt;&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Arnold McGall
&lt;br&gt;&lt;br&gt;&lt;br&gt;Todd Alan Smith wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 11:25 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Following your example in the examples.txt file for sending a form email
&lt;br&gt;&amp;gt;&amp;gt; to two recipients I used the following parameter in the %recipient_alias
&lt;br&gt;&amp;gt;&amp;gt; portion of the script:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; %recipient_alias &amp;nbsp; = (
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;'comment-recipients' &amp;nbsp;=&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt;',
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;);
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; However, the email is only sent to the first email address
&lt;br&gt;&amp;gt;&amp;gt; (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537850&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;). &amp;nbsp;I assume there is an error in the example
&lt;br&gt;&amp;gt;&amp;gt; shown in the exmples.txt file which accompanied the
&lt;br&gt;&amp;gt;&amp;gt; formmail_compat-3.14c1.zip downloadable package from your web site.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Arnold, the examples are correct. Please reply with the USER
&lt;br&gt;&amp;gt; CONFIGURATION SECTION of your FormMail.pl file, as well as the URL for
&lt;br&gt;&amp;gt; the form page in question. We'll have a look.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Todd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26537850.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537844</id>
	<title>Re: [Nms-cgi-support] Formmail</title>
	<published>2009-11-26T20:29:53Z</published>
	<updated>2009-11-26T20:29:53Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 11:40 PM, Brad &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537844&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dxb147@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Below is the result of your feedback form.  It was submitted by
&lt;br&gt;&amp;gt; Brad (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537844&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dxb147@...&lt;/a&gt;) on Thursday, November 26, 2009 at 04:40:15
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; description: Hello.  I am trying to pass data from some of the fields in the form.  Example: 1994 Ford Explorer Fender instead of WWW Web Submission which I think is the default.  I did this before but I have forgotten. Appreciate any help.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Brad, I'm not following you. Please be more specific.
&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Formmail-tp26524281p26537844.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537711</id>
	<title>Re: [Nms-cgi-support] MS FormMail Version 3.14c1 - CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers.</title>
	<published>2009-11-26T20:00:20Z</published>
	<updated>2009-11-26T20:00:20Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">Massimo, thanks for supplying all this information up front.
&lt;br&gt;See my standard reply to your issue:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/CGI-application-misbehaved-to9404857.html#a9404857&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/CGI-application-misbehaved-to9404857.html#a9404857&lt;/a&gt;&lt;br&gt;&lt;br&gt;More comments down below (amidst your form code)...
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 3:55 AM, Massimo Panaccione
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537711&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;massimo.p@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Below is the result of your feedback form.  It was submitted by
&lt;br&gt;&amp;gt; Massimo Panaccione (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537711&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;massimo.p@...&lt;/a&gt;) on Thursday, November 26, 2009 at 08:55:35
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; description: I receive the above error when the script runs. Can you help?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the top part of my *.pl file:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #!/usr/bin/perl -wT
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt; # NMS FormMail Version 3.14c1
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; use strict;
&lt;br&gt;&amp;gt; use vars qw(
&lt;br&gt;&amp;gt;  $DEBUGGING $emulate_matts_code $secure %more_config
&lt;br&gt;&amp;gt;  $allow_empty_ref $max_recipients $mailprog @referers
&lt;br&gt;&amp;gt;  @allow_mail_to @recipients %recipient_alias
&lt;br&gt;&amp;gt;  @valid_ENV $date_fmt $style $send_confirmation_mail
&lt;br&gt;&amp;gt;  $confirmation_text $locale $charset $no_content
&lt;br&gt;&amp;gt;  $double_spacing $wrap_text $wrap_style $postmaster
&lt;br&gt;&amp;gt;  $address_style
&lt;br&gt;&amp;gt; );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # PROGRAM INFORMATION
&lt;br&gt;&amp;gt; # -------------------
&lt;br&gt;&amp;gt; # FormMail.pl Version 3.14c1
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt; # This program is licensed in the same way as Perl
&lt;br&gt;&amp;gt; # itself. You are free to choose between the GNU Public
&lt;br&gt;&amp;gt; # License &amp;lt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/a&gt;&amp;gt;  or
&lt;br&gt;&amp;gt; # the Artistic License
&lt;br&gt;&amp;gt; # &amp;lt;&lt;a href=&quot;http://www.perl.com/pub/a/language/misc/Artistic.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.perl.com/pub/a/language/misc/Artistic.html&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt; # For help on configuration or installation see the
&lt;br&gt;&amp;gt; # README file or the POD documentation at the end of
&lt;br&gt;&amp;gt; # this file.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # USER CONFIGURATION SECTION
&lt;br&gt;&amp;gt; # --------------------------
&lt;br&gt;&amp;gt; # Modify these to your own settings. You might have to
&lt;br&gt;&amp;gt; # contact your system administrator if you do not run
&lt;br&gt;&amp;gt; # your own web server. If the purpose of these
&lt;br&gt;&amp;gt; # parameters seems unclear, please see the README file.
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt; BEGIN
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;  $DEBUGGING         = 1;
&lt;br&gt;&amp;gt;  $emulate_matts_code= 0;
&lt;br&gt;&amp;gt;  $secure            = 1;
&lt;br&gt;&amp;gt;  $allow_empty_ref   = 1;
&lt;br&gt;&amp;gt;  $max_recipients    = 1;
&lt;br&gt;&amp;gt;  $mailprog          = 'SMTP:smtp.basproject.com';
&lt;br&gt;&amp;gt;  $postmaster        = '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537711&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;auto_reply@...&lt;/a&gt;';
&lt;br&gt;&amp;gt;  @referers          = 'basproject.com';
&lt;br&gt;&amp;gt;  @allow_mail_to     = 'basproject.com';
&lt;br&gt;&amp;gt;  @recipients        = ();
&lt;br&gt;&amp;gt;  %recipient_alias   = ('1' =&amp;gt; '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537711&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;support@...&lt;/a&gt;',);
&lt;br&gt;&amp;gt;  @valid_ENV         = qw(REMOTE_HOST REMOTE_ADDR REMOTE_USER HTTP_USER_AGENT);
&lt;br&gt;&amp;gt;  $locale            = '';
&lt;br&gt;&amp;gt;  $charset           = 'iso-8859-1';
&lt;br&gt;&amp;gt;  $date_fmt          = '%A, %B %d, %Y at %H:%M:%S';
&lt;br&gt;&amp;gt;  $style             = '/scripts/twoColFixLtHdr.css';
&lt;br&gt;&amp;gt;  $no_content        = 0;
&lt;br&gt;&amp;gt;  $double_spacing    = 1;
&lt;br&gt;&amp;gt;  $wrap_text         = 0;
&lt;br&gt;&amp;gt;  $wrap_style        = 0;
&lt;br&gt;&amp;gt;  $address_style     = 1;
&lt;br&gt;&amp;gt;  $send_confirmation_mail = 1;
&lt;br&gt;&amp;gt;  $confirmation_text = &amp;lt;&amp;lt;'END_OF_CONFIRMATION';
&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537711&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;you@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Subject: Form Submission
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; END_OF_CONFIRMATION
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the top part of my xhtml form:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;form name=&amp;quot;get_involved&amp;quot; action=&amp;quot;cgi-bin/formmail/FormMail.getinvolved.pl&amp;quot; method=&amp;quot;post&amp;quot; enctype=&amp;quot;text/plain&amp;quot; target=&amp;quot;_top&amp;quot; id=&amp;quot;formgetinvolved&amp;quot;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;In the line above, get rid of the enctype, target, and id attributes,
&lt;br&gt;at least temporarily. All else looks fine to me.
&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;                        &amp;lt;input name=&amp;quot;subject&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;BAS Project Online Registration Form&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;            &amp;lt;input name=&amp;quot;recipient&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;            &amp;lt;input name=&amp;quot;redirect&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;&lt;a href=&quot;http://basproject.com/formsubmitted.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://basproject.com/formsubmitted.html&lt;/a&gt;&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;            &amp;lt;input name=&amp;quot;env_report&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;REMOTE_HOST,REMOTE_ADDR,REMOTE_USER,HTTP_USER_AGENT&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;            &amp;lt;input name=&amp;quot;print_blank_fields&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;1&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;            &amp;lt;input name=&amp;quot;print_config&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;recipient,subject,email,realname,redirect,title,sort,required,env_report,return_link_title,return_link_url,print_blank_fields,missing_fields_redirect&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; enable: on
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
&lt;br&gt;&amp;gt; trial. Simplify your report design, integration and deployment - and focus on
&lt;br&gt;&amp;gt; what you do best, core application coding. Discover what's new with
&lt;br&gt;&amp;gt; Crystal Reports now.  &lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; To unsubscribe from this mailing list visit
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;&amp;gt; and follow the simple instructions.
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--MS-FormMail-Version-3.14c1---CGI-Error-The-specified-CGI-application-misbehaved-by-not-returning-a-complete-set-of-HTTP-headers.-tp26526290p26537711.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537631</id>
	<title>Re: [Nms-cgi-support] email form redirect not working</title>
	<published>2009-11-26T19:43:46Z</published>
	<updated>2009-11-26T19:43:46Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Thu, Nov 26, 2009 at 11:28 AM, Mark Christian &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537631&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Below is the result of your feedback form.  It was submitted by
&lt;br&gt;&amp;gt; Mark Christian (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537631&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark@...&lt;/a&gt;) on Thursday, November 26, 2009 at 16:28:05
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; description: Hi Guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; First let me thank you for all this great work. I'm having a problem though, I am using NMS_FORMMAIL and it sends emails correctly but I cannot get it to redirect to my own &amp;quot;thank you&amp;quot; page. In the instructions it says to specify a redirect address in the form page, like this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;redirect&amp;quot; value=&amp;quot;thanks.htm&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But try as I might it always sends me to NMS_FORMMAIL.PL as though I haven't specified a redirect.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do you think I'm doing wrong?
&lt;/div&gt;&lt;br&gt;You're not quoting the README correctly. Be sure you're using NMS
&lt;br&gt;FormMail 3.14c1 downloaded from here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://nms-cgi.sourceforge.net/scripts.shtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.sourceforge.net/scripts.shtml&lt;/a&gt;&lt;br&gt;&lt;br&gt;Search the README (bundled with the program code) for 'redirect' and
&lt;br&gt;follow that example.
&lt;br&gt;&lt;br&gt;&amp;gt; Should the redirect address be specified within the NMS_FORMMAIL.PL file itself?
&lt;br&gt;&lt;br&gt;No.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--email-form-redirect-not-working-tp26531838p26537631.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537607</id>
	<title>Re: [Nms-cgi-support] Help needed</title>
	<published>2009-11-26T19:40:27Z</published>
	<updated>2009-11-26T19:40:27Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Thu, Nov 26, 2009 at 11:15 AM, Gerard &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537607&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gerard.sutton@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi Guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How do i get your &amp;quot;nms_formail.pl&amp;quot; to redirect to my &amp;quot;contact.html&amp;quot; page after form submit, both files are in the same directory.
&lt;br&gt;&lt;br&gt;Gerard, this is covered in the README. Search for 'redirect'. Be sure
&lt;br&gt;to use a full URL. For example:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.example.com/success.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/success.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;The README is bundled with the program code and available for download
&lt;br&gt;from this location:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://nms-cgi.sourceforge.net/scripts.shtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.sourceforge.net/scripts.shtml&lt;/a&gt;&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Help-needed-tp26531657p26537607.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537587</id>
	<title>Re: [Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-26T19:35:33Z</published>
	<updated>2009-11-26T19:35:33Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 11:25 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537587&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537587&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arnie@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Following your example in the examples.txt file for sending a form email
&lt;br&gt;&amp;gt; to two recipients I used the following parameter in the %recipient_alias
&lt;br&gt;&amp;gt; portion of the script:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; %recipient_alias   = (
&lt;br&gt;&amp;gt;  'comment-recipients'  =&amp;gt;
&lt;br&gt;&amp;gt; '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537587&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537587&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt;',
&lt;br&gt;&amp;gt;    );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; However, the email is only sent to the first email address
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537587&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;).  I assume there is an error in the example
&lt;br&gt;&amp;gt; shown in the exmples.txt file which accompanied the
&lt;br&gt;&amp;gt; formmail_compat-3.14c1.zip downloadable package from your web site.
&lt;/div&gt;&lt;br&gt;Arnold, the examples are correct. Please reply with the USER
&lt;br&gt;CONFIGURATION SECTION of your FormMail.pl file, as well as the URL for
&lt;br&gt;the form page in question. We'll have a look.
&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26537587.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26537553</id>
	<title>Re: [Nms-cgi-support] [SPAM] THANK YOU PAGE</title>
	<published>2009-11-26T19:28:22Z</published>
	<updated>2009-11-26T19:28:22Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Wed, Nov 25, 2009 at 2:17 PM, PAUL &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537553&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;psa66us@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Below is the result of your feedback form.  It was submitted by
&lt;br&gt;&amp;gt; PAUL (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26537553&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;psa66us@...&lt;/a&gt;) on Wednesday, November 25, 2009 at 19:17:36
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; description: The formmail works well with my site, but I cant figure how to configure the &amp;quot;require field&amp;quot; and and &amp;quot;thank you page&amp;quot;. I have a thank u page designed on my site and linked through the hidden field in dreamweaver cs4, but it does not work
&lt;br&gt;&lt;br&gt;&lt;br&gt;Both of these things are to be handled in your form code.
&lt;br&gt;&lt;br&gt;&amp;gt; 1. Do i need to configure it in the formmail.pl If yes where&amp;gt;
&lt;br&gt;&lt;br&gt;No, just in the form code. See the README. Search for 'redirect'. Be
&lt;br&gt;sure to supply a FULL URL (&lt;a href=&quot;http://www.example.com/success.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.example.com/success.html&lt;/a&gt;&amp;nbsp;rather
&lt;br&gt;than www.example.com).
&lt;br&gt;&lt;br&gt;&amp;gt; 2. I did same for require field in dreamweaver. do i need to configure this in the formmail.pl If yes, please tell me how to do this.
&lt;br&gt;&lt;br&gt;You set this in the form code. See the README. Search for 'required'.
&lt;br&gt;&lt;br&gt;If you don't have the README, it's bundled with the program and
&lt;br&gt;available for download from here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://nms-cgi.sourceforge.net/scripts.shtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.sourceforge.net/scripts.shtml&lt;/a&gt;&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support---SPAM--THANK-YOU-PAGE-tp26518667p26537553.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531838</id>
	<title>[Nms-cgi-support] email form redirect not working</title>
	<published>2009-11-26T08:28:05Z</published>
	<updated>2009-11-26T08:28:05Z</updated>
	<author>
		<name>Mark Christian-4</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;Mark Christian (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531838&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark@...&lt;/a&gt;) on Thursday, November 26, 2009 at 16:28:05
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: Hi Guys, 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;First let me thank you for all this great work. I'm having a problem though, I am using NMS_FORMMAIL and it sends emails correctly but I cannot get it to redirect to my own &amp;quot;thank you&amp;quot; page. In the instructions it says to specify a redirect address in the form page, like this: 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;redirect&amp;quot; value=&amp;quot;thanks.htm&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;But try as I might it always sends me to NMS_FORMMAIL.PL as though I haven't specified a redirect. &amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;What do you think I'm doing wrong? 
&lt;br&gt;Should the redirect address be specified within the NMS_FORMMAIL.PL file itself? 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Your help would be greatly appreciated. If you wish to look at my form it's at www.ty3media.co.uk/contact.htm 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thank you and kind regards, 
&lt;br&gt;Mark Christian
&lt;br&gt;&lt;br&gt;enable: on
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--email-form-redirect-not-working-tp26531838p26531838.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531657</id>
	<title>[Nms-cgi-support] Help needed</title>
	<published>2009-11-26T08:15:02Z</published>
	<updated>2009-11-26T08:15:02Z</updated>
	<author>
		<name>Gerard-18</name>
	</author>
	<content type="html">Hi Guys,
&lt;br&gt;&lt;br&gt;How do i get your &amp;quot;nms_formail.pl&amp;quot; to redirect to my &amp;quot;contact.html&amp;quot; page after form submit, both files are in the same directory.
&lt;br&gt;&lt;br&gt;Any help would be great.
&lt;br&gt;&lt;br&gt;Gerard. (not a perl coder)
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Help-needed-tp26531657p26531657.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526290</id>
	<title>[Nms-cgi-support] MS FormMail Version 3.14c1 - CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers.</title>
	<published>2009-11-26T00:55:35Z</published>
	<updated>2009-11-26T00:55:35Z</updated>
	<author>
		<name>Massimo Panaccione</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;Massimo Panaccione (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526290&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;massimo.p@...&lt;/a&gt;) on Thursday, November 26, 2009 at 08:55:35
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: I receive the above error when the script runs. Can you help? 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Here is the top part of my *.pl file: 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;#!/usr/bin/perl -wT 
&lt;br&gt;# 
&lt;br&gt;# NMS FormMail Version 3.14c1 
&lt;br&gt;# 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;use strict; 
&lt;br&gt;use vars qw( 
&lt;br&gt;&amp;nbsp; $DEBUGGING $emulate_matts_code $secure %more_config 
&lt;br&gt;&amp;nbsp; $allow_empty_ref $max_recipients $mailprog @referers 
&lt;br&gt;&amp;nbsp; @allow_mail_to @recipients %recipient_alias 
&lt;br&gt;&amp;nbsp; @valid_ENV $date_fmt $style $send_confirmation_mail 
&lt;br&gt;&amp;nbsp; $confirmation_text $locale $charset $no_content 
&lt;br&gt;&amp;nbsp; $double_spacing $wrap_text $wrap_style $postmaster &amp;nbsp;
&lt;br&gt;&amp;nbsp; $address_style 
&lt;br&gt;); 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;# PROGRAM INFORMATION 
&lt;br&gt;# ------------------- 
&lt;br&gt;# FormMail.pl Version 3.14c1 
&lt;br&gt;# 
&lt;br&gt;# This program is licensed in the same way as Perl 
&lt;br&gt;# itself. You are free to choose between the GNU Public 
&lt;br&gt;# License &amp;lt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/a&gt;&amp;gt; &amp;nbsp;or 
&lt;br&gt;# the Artistic License 
&lt;br&gt;# &amp;lt;&lt;a href=&quot;http://www.perl.com/pub/a/language/misc/Artistic.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.perl.com/pub/a/language/misc/Artistic.html&lt;/a&gt;&amp;gt; 
&lt;br&gt;# 
&lt;br&gt;# For help on configuration or installation see the 
&lt;br&gt;# README file or the POD documentation at the end of 
&lt;br&gt;# this file. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;# USER CONFIGURATION SECTION 
&lt;br&gt;# -------------------------- 
&lt;br&gt;# Modify these to your own settings. You might have to 
&lt;br&gt;# contact your system administrator if you do not run 
&lt;br&gt;# your own web server. If the purpose of these 
&lt;br&gt;# parameters seems unclear, please see the README file. 
&lt;br&gt;# 
&lt;br&gt;BEGIN 
&lt;br&gt;{ 
&lt;br&gt;&amp;nbsp; $DEBUGGING &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 1; 
&lt;br&gt;&amp;nbsp; $emulate_matts_code= 0; 
&lt;br&gt;&amp;nbsp; $secure &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 1; 
&lt;br&gt;&amp;nbsp; $allow_empty_ref &amp;nbsp; = 1; 
&lt;br&gt;&amp;nbsp; $max_recipients &amp;nbsp; &amp;nbsp;= 1; 
&lt;br&gt;&amp;nbsp; $mailprog &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 'SMTP:smtp.basproject.com'; 
&lt;br&gt;&amp;nbsp; $postmaster &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526290&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;auto_reply@...&lt;/a&gt;'; 
&lt;br&gt;&amp;nbsp; @referers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 'basproject.com'; 
&lt;br&gt;&amp;nbsp; @allow_mail_to &amp;nbsp; &amp;nbsp; = 'basproject.com'; 
&lt;br&gt;&amp;nbsp; @recipients &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= (); 
&lt;br&gt;&amp;nbsp; %recipient_alias &amp;nbsp; = ('1' =&amp;gt; '&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526290&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;support@...&lt;/a&gt;',); 
&lt;br&gt;&amp;nbsp; @valid_ENV &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = qw(REMOTE_HOST REMOTE_ADDR REMOTE_USER HTTP_USER_AGENT); 
&lt;br&gt;&amp;nbsp; $locale &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= ''; 
&lt;br&gt;&amp;nbsp; $charset &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 'iso-8859-1'; 
&lt;br&gt;&amp;nbsp; $date_fmt &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '%A, %B %d, %Y at %H:%M:%S'; 
&lt;br&gt;&amp;nbsp; $style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = '/scripts/twoColFixLtHdr.css'; 
&lt;br&gt;&amp;nbsp; $no_content &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0; 
&lt;br&gt;&amp;nbsp; $double_spacing &amp;nbsp; &amp;nbsp;= 1; 
&lt;br&gt;&amp;nbsp; $wrap_text &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = 0; 
&lt;br&gt;&amp;nbsp; $wrap_style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= 0; 
&lt;br&gt;&amp;nbsp; $address_style &amp;nbsp; &amp;nbsp; = 1; 
&lt;br&gt;&amp;nbsp; $send_confirmation_mail = 1; 
&lt;br&gt;&amp;nbsp; $confirmation_text = &amp;lt;&amp;lt;'END_OF_CONFIRMATION'; 
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526290&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;you@...&lt;/a&gt; 
&lt;br&gt;Subject: Form Submission 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thank you. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;END_OF_CONFIRMATION 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Here is the top part of my xhtml form: 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;lt;form name=&amp;quot;get_involved&amp;quot; action=&amp;quot;cgi-bin/formmail/FormMail.getinvolved.pl&amp;quot; method=&amp;quot;post&amp;quot; enctype=&amp;quot;text/plain&amp;quot; target=&amp;quot;_top&amp;quot; id=&amp;quot;formgetinvolved&amp;quot;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;subject&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;BAS Project Online Registration Form&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;recipient&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;1&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;redirect&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;&lt;a href=&quot;http://basproject.com/formsubmitted.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://basproject.com/formsubmitted.html&lt;/a&gt;&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;env_report&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;REMOTE_HOST,REMOTE_ADDR,REMOTE_USER,HTTP_USER_AGENT&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;print_blank_fields&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;1&amp;quot; /&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input name=&amp;quot;print_config&amp;quot; type=&amp;quot;hidden&amp;quot; value=&amp;quot;recipient,subject,email,realname,redirect,title,sort,required,env_report,return_link_title,return_link_url,print_blank_fields,missing_fields_redirect&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;enable: on
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--MS-FormMail-Version-3.14c1---CGI-Error-The-specified-CGI-application-misbehaved-by-not-returning-a-complete-set-of-HTTP-headers.-tp26526290p26526290.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26524281</id>
	<title>[Nms-cgi-support] Formmail</title>
	<published>2009-11-25T20:40:15Z</published>
	<updated>2009-11-25T20:40:15Z</updated>
	<author>
		<name>Brad-103</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;Brad (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524281&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dxb147@...&lt;/a&gt;) on Thursday, November 26, 2009 at 04:40:15
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: Hello. &amp;nbsp;I am trying to pass data from some of the fields in the form. &amp;nbsp;Example: 1994 Ford Explorer Fender instead of WWW Web Submission which I think is the default. &amp;nbsp;I did this before but I have forgotten. Appreciate any help. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thanks, 
&lt;br&gt;Brad
&lt;br&gt;&lt;br&gt;enable: on
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Formmail-tp26524281p26524281.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26524273</id>
	<title>[Nms-cgi-support] multiple email addresses in FormMail.pl (%recipient_alias )</title>
	<published>2009-11-25T20:25:29Z</published>
	<updated>2009-11-25T20:25:29Z</updated>
	<author>
		<name>arnie@arnie.net</name>
	</author>
	<content type="html">Following your example in the examples.txt file for sending a form email 
&lt;br&gt;to two recipients I used the following parameter in the %recipient_alias 
&lt;br&gt;portion of the script:
&lt;br&gt;&lt;br&gt;%recipient_alias &amp;nbsp; = (
&lt;br&gt;&amp;nbsp; 'comment-recipients' &amp;nbsp;=&amp;gt; 
&lt;br&gt;'&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524273&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;,&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524273&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ncasciani@...&lt;/a&gt;',
&lt;br&gt;&amp;nbsp; &amp;nbsp; );
&lt;br&gt;&lt;br&gt;However, the email is only sent to the first email address 
&lt;br&gt;(&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524273&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maillist@...&lt;/a&gt;). &amp;nbsp;I assume there is an error in the example 
&lt;br&gt;shown in the exmples.txt file which accompanied the 
&lt;br&gt;formmail_compat-3.14c1.zip downloadable package from your web site.
&lt;br&gt;&lt;br&gt;I am not a pearl guru. &amp;nbsp;I am, in fact a novice's novice. &amp;nbsp;Could you 
&lt;br&gt;please explain what I need to do so that the email can be sent to 
&lt;br&gt;multiple email addresses?
&lt;br&gt;&lt;br&gt;Thank you.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Arnold McGall
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--multiple-email-addresses-in-FormMail.pl-%28-recipient_alias-%29-tp26524273p26524273.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26522540</id>
	<title>[Nms-cgi-support] Votre mouton à prix géant, Astuce fraîcheur : conserver les aliments à sous vide à petit prix, Tunisiana : une heure d'appels pour seulement 1,900 DT ...</title>
	<published>2009-11-25T16:08:08Z</published>
	<updated>2009-11-25T16:08:08Z</updated>
	<author>
		<name>NSENS.in</name>
	</author>
	<content type="html">Cliquez sur ce lien si vous n'arrivez pas à lire cette newsletter
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;Astuce fraîcheur : conserver les aliments à sous vide à petit prix 
&lt;br&gt;&lt;br&gt;Pratique et simple d'emploi, Astuce Fraîcheur est le meilleur moyen de conserver durablement tous vos aliments frais ou cuisinés. Lufian : Une nouvelle collection pour des hommes exceptionnels 
&lt;br&gt;&lt;br&gt;Lufian est une marque de vêtement de luxe, la société a ouvert trois points de vente en Tunisie : l'un au centre commercial Lafayette champion...
&lt;br&gt;Comacem fête l'Aïd à sa manière 
&lt;br&gt;&lt;br&gt;COMACEM partage avec vous la fête de l'Aïd à sa manière cette année et baisse les prix des réfrigérateurs à cette occasion. &amp;nbsp;Electronabli : offres Spéciales Aïd el Kebir 
&lt;br&gt;&lt;br&gt;Dans tous les magasins Electronabli et jusqu'au 6 Décembre 2009, bénéficiez de cadeaux lors de l'achat de quelques articles signalés dans ses différents points de vente.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Tunisiana : une heure d'appels pour seulement 1,900 DT 
&lt;br&gt;&lt;br&gt;Tunisiana : une heure d'appels pour seulement 1,900 DT &amp;nbsp;Votre mouton à prix géant 
&lt;br&gt;&lt;br&gt;Du 20 au 26 Novembre, votre magasin Géant, met à votre disposition des moutons à partir de 179 DT au niveau du parking D. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;High Tech
&lt;br&gt;• LG se lance aussi dans la technologie netbook 
&lt;br&gt;• Samsung Galaxy Spica I5700 bientôt en Tunisie 
&lt;br&gt;• Microsoft Office 2010 : 20 nouvelles fonctionnalités inédites 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;Femme
&lt;br&gt;• Réveil difficile, yeux gonflés ? Quelles astuces ? 
&lt;br&gt;• Les lentilles, ça change notre regard, ça change notre vision ! 
&lt;br&gt;• Pour un sourire rayonnant... 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Auto
&lt;br&gt;• McLarsen SLR Moss, la Mecedes qui nous fait des frissons !! 
&lt;br&gt;• Le X6 !! Un nouveau défi lancé par BMW! 
&lt;br&gt;• L'Audi TT RS
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;Maison &amp; déco
&lt;br&gt;• Nouveautés en linge de lit 
&lt;br&gt;• Les poufs SIT ON IT : une nouvelle façon de se détendre 
&lt;br&gt;• Un Vase translucide avec une forme arrondie : fleurissez votre quotidien ! 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Dossiers Guides
&lt;br&gt;Mon parfum et moi : le coup de foudre ! &amp;nbsp;Dis- moi ce qu'est ton parfum, je te dis qui tu es? 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;Les offres de la semaine 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Chez ONSTEKChez Tonic Space Chez PRO DISTRIBUTION 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Genius Haut Parleurs SW-Flat2.1 850 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;12 Seances de Power plate
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;ECRAN LCD SAMSUNG 18.5&amp;quot; 
&lt;br&gt;&lt;br&gt;82 dt260 dt220 dt
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Nous vous prions de nous excuser si cette lettre vous a causé un quelconque désagrément. Pour ne plus recevoir les newsletters de Nsens, cliquez ici 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Votre-mouton-%C3%A0-prix-g%C3%A9ant%2C-Astuce-fra%C3%AEcheur-%3A-conserver-les-aliments-%C3%A0-sous-vide-%C3%A0-petit-prix%2C-Tunisiana-%3A-une-heure-d%27appels-pour-seulement-1%2C900-DT-...-tp26522540p26522540.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26522528</id>
	<title>[Nms-cgi-support] Qatari Diar confirme ses projets en Tunisie et ouvre les recrutements; Forum de l'Atuge: en direct de Londres; CTKD: une nouvelle dimension...</title>
	<published>2009-11-25T16:07:05Z</published>
	<updated>2009-11-25T16:07:05Z</updated>
	<author>
		<name>Newsletter : Leaders.com.tn</name>
	</author>
	<content type="html">Si vous ne visualisez pas correctement cet e-mail, cliquez ici 
&lt;br&gt;&amp;nbsp;Newsletter - Mercredi 25 Novembre 2009 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; 
&lt;br&gt;News &amp;nbsp; 
&lt;br&gt;&amp;nbsp;Aid Said
&lt;br&gt;Fidèle à son affectueuse tradition, Raouf Karray nous gratifie cette année aussi, comme à chaque Aid, d’une superbe illustration que nous sommes heureux de partager avec vous. Avec nos meilleurs vœux de joyeuse fête. Leaders &amp;nbsp; 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;Qatari Diar confirme ses projets en Tunisie et lance les premiers recrutements
&lt;br&gt;Voilà un bon signe de relance des projets de développements urbains jusque-là ralentis par la crise ? Qatari Diar, promoteur significatif des pays du Golfe qui a toujours maintenu sa croissance, vient de confirmer ses projets en Tunisie. ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;En direct de Londres, le Forum de l’ATUGE
&lt;br&gt;Londres- Correspondance Spéciale pour Leaders Le forum ATUGE Londres, tenu samedi 21 novembre à la Cass Business School à la City de Londres, a-t-il tenu ses promesses? Par le nombre des participants (une centaine de tunisiens de Londres, ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;CTKD: une nouvelle dimension avec plus d’investissements et dans de nouveaux secteurs
&lt;br&gt;Le Consortium Tuniso-Koweitien de Développement (CTKD) s’apprête à initier une nouvelle étape prometteuse en intensifiant et diversifiant ses investissements en Tunisie, apprend Leaders. Réuni à Tunis la semaine dernière sous la ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;Barack Obama entre humanisme et puissance: conférence de Robert Harvey au Collège International de Tunis
&lt;br&gt;Reconnu parmi les meilleurs spécialistes américains de littérature française comparée et de philosophie, &amp;nbsp;et auteur de nombreux ouvrages consacrés à Sartre, Duras, Lyotard et autres icônes françaises, Robert Harvey, pur produit de Berkeley ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Blogs 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Pourquoi ne pas faire jouer les rencontres sportives interarabes à huis clos ?
&lt;br&gt;Question à un million de dinars: pourquoi les rencontres sportives opposant des équipes arabes à des équipes étrangères se déroulent, généralement, dans le respect de l'esprit sportif et même dans une ambiance bon enfant (les supporters ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;People 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Lotfi Labaied: Président de la Fédération Tunisienne de Canoë Kayak
&lt;br&gt;Le handball, la natation, le Club Africain et Makarem El Mahdia: Lotfi Labaied qui vient d’être nommé président de la Fédération Tunisienne de Canoë Kayak a toujours fait preuve d'éclectisme dans ses choix, ses passions. Mais, il y a ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Notes et Docs 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;La Bourse de Casablanca à l'heure des grandes réformes
&lt;br&gt;La communauté économique et financière du Maroc s’interroge sur la dynamisation du marché boursier. Un séminaire fort instructif vient d’y être consacré. Certaines similitudes avec la Tunisie incitent à prendre connaissance des ... 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Nous vous prions de nous excuser si cette lettre d'information vous a causé un quelconque désagrément. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Vous pouvez vous desabonner de maniere controlee sur www.stopsending.com. Vous aurez besoin de saisir:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;nbsp;L'adresse de l'emetteur: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26522528&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leaders.nl@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;nbsp;La cle : Dj4tEtDnIlxGPormFnIxRMqwWWtMfp/1el2i0X4MDHkOKS0T0PAiXEYCiuQWdjFEyulZe0w3n+96
&lt;br&gt;H6LXfgsMag48LRrQ7SJaRiWK7RYxMVnK+Fl8
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Qatari-Diar-confirme-ses-projets-en-Tunisie-et-ouvre-les-recrutements--Forum-de-l%27Atuge%3A-en-direct-de-Londres--CTKD%3A-une-nouvelle-dimension...-tp26522528p26522528.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26518667</id>
	<title>[Nms-cgi-support] [SPAM] THANK YOU PAGE</title>
	<published>2009-11-25T11:17:36Z</published>
	<updated>2009-11-25T11:17:36Z</updated>
	<author>
		<name>PAUL-437</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;PAUL (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26518667&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;psa66us@...&lt;/a&gt;) on Wednesday, November 25, 2009 at 19:17:36
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: The formmail works well with my site, but I cant figure how to configure the &amp;quot;require field&amp;quot; and and &amp;quot;thank you page&amp;quot;. I have a thank u page designed on my site and linked through the hidden field in dreamweaver cs4, but it does not work 
&lt;br&gt;1. Do i need to configure it in the formmail.pl If yes where&amp;gt; 
&lt;br&gt;2. I did same for require field in dreamweaver. do i need to configure this in the formmail.pl If yes, please tell me how to do this. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Thank you very much for the nms formmail
&lt;br&gt;&lt;br&gt;enable: on
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support---SPAM--THANK-YOU-PAGE-tp26518667p26518667.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511275</id>
	<title>[SPAM] CANCÚN $2,899 en NAVIDAD Hotel ALL INCLUSIVE</title>
	<published>2009-11-25T03:40:09Z</published>
	<updated>2009-11-25T03:40:09Z</updated>
	<author>
		<name>Luxury Beach Resorts</name>
	</author>
	<content type="html">En caso de no poder ver correctamente este correo favor de dar clic aquí
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-SPAM--CANC%C3%9AN-%242%2C899-en-NAVIDAD-Hotel-ALL-INCLUSIVE-tp26511275p26511275.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510228</id>
	<title>[Nms-cgi-support] [SPAM] Please confirm reception - http://www.hooznet.com</title>
	<published>2009-11-25T02:09:16Z</published>
	<updated>2009-11-25T02:09:16Z</updated>
	<author>
		<name>Marc Schneider-7</name>
	</author>
	<content type="html">Ref: &lt;a href=&quot;http://www.hooznet.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.hooznet.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;A few months ago, I sent an email informing you that after reviewing
&lt;br&gt;&lt;a href=&quot;http://www.hooznet.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.hooznet.com&lt;/a&gt;, our native technicians reported that your website
&lt;br&gt;could not be
&lt;br&gt;found on foreign search engines (they had tested it on Hispanic search
&lt;br&gt;engines, German search engines, Japanese search engines, Chinese
&lt;br&gt;search engines, etc.). I invite you to visit us online, where we offer
&lt;br&gt;to increase your international online visibility in 28 languages
&lt;br&gt;(without having to translate your site):
&lt;br&gt;&lt;a href=&quot;http://www.zoptimization.com/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.zoptimization.com/index.html&lt;/a&gt;&lt;br&gt;&amp;nbsp;.
&lt;br&gt;&lt;br&gt;From the Japanese Google to the German Yahoo, get users to find your
&lt;br&gt;website when searching with YOUR KEYWORDS in their Native language!
&lt;br&gt;&lt;br&gt;By the way, did you get to watch our online presentation? If not, I
&lt;br&gt;strongly invite you to do so as it explains clearly how to get top
&lt;br&gt;rankings on multilingual search engines with only 1 entry page per
&lt;br&gt;language: &lt;a href=&quot;http://www.zoptimization.com/demo.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.zoptimization.com/demo.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Rates vary from $350-$500 per language, depending on the number of
&lt;br&gt;languages selected. Please click on the following link to access our
&lt;br&gt;current rates &amp; promotions: &lt;a href=&quot;http://www.zoptimization.com/rates&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.zoptimization.com/rates&lt;/a&gt;&lt;br&gt;&amp;nbsp;.
&lt;br&gt;&lt;br&gt;Just to give you an idea:
&lt;br&gt;&lt;br&gt;- 1 language = $500 
&lt;br&gt;&lt;br&gt;- 3 languages X $500 = $1,500 - $500 special &amp;quot;first-time customer&amp;quot;
&lt;br&gt;offer = $1,000 
&lt;br&gt;&lt;br&gt;- 4 languages X $500 = $2,000 – 5% volume discount = $1,900 - $500
&lt;br&gt;special &amp;quot;first-time customer&amp;quot; offer = $1,400 
&lt;br&gt;&lt;br&gt;- 5 languages X $ 500 = $2,500 – 10% volume discount = $2,250 -
&lt;br&gt;$500 special &amp;quot;first-time customer&amp;quot; offer = $1,750...etc.
&lt;br&gt;&lt;br&gt;Please call me/email me and let’s increase your international
&lt;br&gt;online presence! I can be reached at at 1 (202) 250-3645 between
&lt;br&gt;1:00-3:30 pm EST, as I work with technicians the rest of the time. (I
&lt;br&gt;appreciate you watching our online demo prior to calling me).
&lt;br&gt;&lt;br&gt;Regards, 
&lt;br&gt;&lt;br&gt;Marc Schneider, Ph.D. 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510228&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mschneider@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510228&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mschneider@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;_____________________
&lt;br&gt;&lt;br&gt;Multilingual Search Engine Optimization Inc.
&lt;br&gt;&lt;br&gt;1250 Connecticut Ave N.W. Suite 200
&lt;br&gt;&lt;br&gt;Washington, DC 20036 USA
&lt;br&gt;&lt;br&gt;TEL: +1 (202) 250-3645 - FAX: 1 (202) 318-4779
&lt;br&gt;&lt;br&gt;zoptimization.com: 
&lt;br&gt;&lt;br&gt;Multilingual Search Engine Promotion Services since 1999
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support---SPAM--Please-confirm-reception---http%3A--www.hooznet.com-tp26510228p26510228.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510161</id>
	<title>Re: encoding problem</title>
	<published>2009-11-25T02:02:36Z</published>
	<updated>2009-11-25T02:02:36Z</updated>
	<author>
		<name>Juan Fiol</name>
	</author>
	<content type="html">Hi, thanks for the prompt answer. I have almost no experience with Cheetah. I am currently using it through tahchee and only for a small set of webpages. So, I am not sure even if my diagnosis is correct.
&lt;br&gt;&lt;br&gt;The problem appears when I do not have the encoding line in both *compiled* templates that used accented words or words like &amp;quot;Español&amp;quot; and in *uncompiled* templates that included accented words (in spanish).
&lt;br&gt;&lt;br&gt;I've tried including the encoding line in both without success until I changed re.match to re.search
&lt;br&gt;I could send my templates, or simplified versions of them, but they are really for use with tahchee. It probably would be better if I can generate a couple of examples in cheetah templates. However, I don't even know the difference or how to use cheetah directly yet. Also, I am rather busy these days, so it can take me three or four days.
&lt;br&gt;&lt;br&gt;After changed the file Compiler.py and including the encoding line in all relevant files everything worked well.
&lt;br&gt;&lt;br&gt;A python trace (error message) corresponds to cheetah not finding the encoding. It follows an example:
&lt;br&gt;+++++++++++++++++++++++++++++++++++++++++++++++
&lt;br&gt;&amp;nbsp; File &amp;quot;/usr/lib/python2.6/site-packages/Cheetah/Compiler.py&amp;quot;, line 1588, in __init__
&lt;br&gt;&amp;nbsp; &amp;nbsp; source = unicode(source)
&lt;br&gt;UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 84: ordinal not in range(128)
&lt;br&gt;make: *** [local] Error 1
&lt;br&gt;+++++++++++++++++++++++++++++++++++++++++++++++
&lt;br&gt;&lt;br&gt;Cheers, Juan
&lt;br&gt;--- On Wed, 11/25/09, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tyler@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tyler@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tyler@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tyler@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Subject: Re: [Cheetahtemplate-discuss] encoding problem
&lt;br&gt;&amp;gt; To: &amp;quot;Juan Fiol&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fiolj@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cc: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cheetahtemplate-discuss@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Date: Wednesday, November 25, 2009, 3:03 AM
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Tue, 24 Nov 2009, Juan Fiol wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Hi, using versions 2.2.2 and 2.4.0 in gentoo I found
&lt;br&gt;&amp;gt; that previous working templates (with version 2.0.1) do not
&lt;br&gt;&amp;gt; longer work. The error point out to encoding (ascii not
&lt;br&gt;&amp;gt; being good for some chars). After posting to tahchee mail
&lt;br&gt;&amp;gt; list, I included encoding directives like suggested in the
&lt;br&gt;&amp;gt; manual:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; #encoding: UTF-8
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Are you referring to the *compiled* templates or the
&lt;br&gt;&amp;gt; uncompiled templates? If
&lt;br&gt;&amp;gt; it's the former than I might need to bump the latest
&lt;br&gt;&amp;gt; compatible version tuple.
&lt;br&gt;&amp;gt; If it's the latter, are you using encoded strings? If I
&lt;br&gt;&amp;gt; remember correctly
&lt;br&gt;&amp;gt; there should be safe-guards in place to try to perform a
&lt;br&gt;&amp;gt; best effort decoding
&lt;br&gt;&amp;gt; of strings (as per usual, a traceback would be helpful here
&lt;br&gt;&amp;gt; with relevant
&lt;br&gt;&amp;gt; data).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; but they were not recognized. It finally seems that I
&lt;br&gt;&amp;gt; could identify the problem to the file Compiler.py. The line
&lt;br&gt;&amp;gt; looking for the encoding is using re.match rather than
&lt;br&gt;&amp;gt; re.search
&lt;br&gt;&amp;gt; &amp;gt; I would think that re.match should work but in fact it
&lt;br&gt;&amp;gt; does not. 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I corrected the problem in my system by applying the
&lt;br&gt;&amp;gt; simple patch that is included at the end. Is it correct? Or
&lt;br&gt;&amp;gt; the problem shows from some other issue that I am not
&lt;br&gt;&amp;gt; seeing?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Looks simple enough, do you have a test case that I can add
&lt;br&gt;&amp;gt; to our
&lt;br&gt;&amp;gt; regression tests?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Another question: The behavior of cheetah has changed
&lt;br&gt;&amp;gt; from version 2.0.1 . Previously I did not have any encoding
&lt;br&gt;&amp;gt; defined and it just worked. Now I have to include a line
&lt;br&gt;&amp;gt; with the encoding in each file to make it work. Is there
&lt;br&gt;&amp;gt; another way to do it (like defining a global encoding)?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'll have to get back to you on the global encoding thing,
&lt;br&gt;&amp;gt; the basis of this
&lt;br&gt;&amp;gt; change was to resolve a number of outstanding unicode
&lt;br&gt;&amp;gt; issues with previous
&lt;br&gt;&amp;gt; versions of Cheetah, by making all internal strings to
&lt;br&gt;&amp;gt; Cheetah unicode objects,
&lt;br&gt;&amp;gt; instead of a mix of encoded strings and unicode objects,
&lt;br&gt;&amp;gt; etc.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; -R. Tyler Ballance
&lt;br&gt;&amp;gt; --------------------------------------
&lt;br&gt;&amp;gt; &amp;nbsp;Jabber: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rtyler@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp;GitHub: &lt;a href=&quot;http://github.com/rtyler&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/rtyler&lt;/a&gt;&lt;br&gt;&amp;gt; Twitter: &lt;a href=&quot;http://twitter.com/agentdero&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/agentdero&lt;/a&gt;&lt;br&gt;&amp;gt;    Blog: &lt;a href=&quot;http://unethicalblogger.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://unethicalblogger.com&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Cheetahtemplate-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26510161&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cheetahtemplate-discuss@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/cheetahtemplate-discuss-f3945.html&quot; embed=&quot;fixTarget[3945]&quot; target=&quot;_top&quot; &gt;cheetahtemplate-discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/encoding-problem-tp26506812p26510161.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26506899</id>
	<title>Re: encoding problem</title>
	<published>2009-11-24T19:03:44Z</published>
	<updated>2009-11-24T19:03:44Z</updated>
	<author>
		<name>tyler-53</name>
	</author>
	<content type="html">&lt;br&gt;On Tue, 24 Nov 2009, Juan Fiol wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi, using versions 2.2.2 and 2.4.0 in gentoo I found that previous working templates (with version 2.0.1) do not longer work. The error point out to encoding (ascii not being good for some chars). After posting to tahchee mail list, I included encoding directives like suggested in the manual:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; #encoding: UTF-8
&lt;br&gt;&lt;br&gt;Are you referring to the *compiled* templates or the uncompiled templates? If
&lt;br&gt;it's the former than I might need to bump the latest compatible version tuple.
&lt;br&gt;If it's the latter, are you using encoded strings? If I remember correctly
&lt;br&gt;there should be safe-guards in place to try to perform a best effort decoding
&lt;br&gt;of strings (as per usual, a traceback would be helpful here with relevant
&lt;br&gt;data).
&lt;br&gt;&lt;br&gt;&amp;gt; but they were not recognized. It finally seems that I could identify the problem to the file Compiler.py. The line looking for the encoding is using re.match rather than re.search
&lt;br&gt;&amp;gt; I would think that re.match should work but in fact it does not. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I corrected the problem in my system by applying the simple patch that is included at the end. Is it correct? Or the problem shows from some other issue that I am not seeing?
&lt;br&gt;&lt;br&gt;Looks simple enough, do you have a test case that I can add to our
&lt;br&gt;regression tests?
&lt;br&gt;&lt;br&gt;&amp;gt; Another question: The behavior of cheetah has changed from version 2.0.1 . Previously I did not have any encoding defined and it just worked. Now I have to include a line with the encoding in each file to make it work. Is there another way to do it (like defining a global encoding)?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;I'll have to get back to you on the global encoding thing, the basis of this
&lt;br&gt;change was to resolve a number of outstanding unicode issues with previous
&lt;br&gt;versions of Cheetah, by making all internal strings to Cheetah unicode objects,
&lt;br&gt;instead of a mix of encoded strings and unicode objects, etc.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;-R. Tyler Ballance
&lt;br&gt;--------------------------------------
&lt;br&gt;&amp;nbsp;Jabber: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506899&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rtyler@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp;GitHub: &lt;a href=&quot;http://github.com/rtyler&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/rtyler&lt;/a&gt;&lt;br&gt;Twitter: &lt;a href=&quot;http://twitter.com/agentdero&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twitter.com/agentdero&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Blog: &lt;a href=&quot;http://unethicalblogger.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://unethicalblogger.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Cheetahtemplate-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506899&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cheetahtemplate-discuss@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;attachment0&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26506899/0/attachment0&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/cheetahtemplate-discuss-f3945.html&quot; embed=&quot;fixTarget[3945]&quot; target=&quot;_top&quot; &gt;cheetahtemplate-discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/encoding-problem-tp26506812p26506899.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26506812</id>
	<title>encoding problem</title>
	<published>2009-11-24T18:51:29Z</published>
	<updated>2009-11-24T18:51:29Z</updated>
	<author>
		<name>Juan Fiol</name>
	</author>
	<content type="html">Hi, using versions 2.2.2 and 2.4.0 in gentoo I found that previous working templates (with version 2.0.1) do not longer work. The error point out to encoding (ascii not being good for some chars). After posting to tahchee mail list, I included encoding directives like suggested in the manual:
&lt;br&gt;&lt;br&gt;#encoding: UTF-8
&lt;br&gt;&lt;br&gt;but they were not recognized. It finally seems that I could identify the problem to the file Compiler.py. The line looking for the encoding is using re.match rather than re.search
&lt;br&gt;I would think that re.match should work but in fact it does not. 
&lt;br&gt;&lt;br&gt;I corrected the problem in my system by applying the simple patch that is included at the end. Is it correct? Or the problem shows from some other issue that I am not seeing?
&lt;br&gt;&lt;br&gt;Another question: The behavior of cheetah has changed from version 2.0.1 . Previously I did not have any encoding defined and it just worked. Now I have to include a line with the encoding in each file to make it work. Is there another way to do it (like defining a global encoding)?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers, Juan
&lt;br&gt;&lt;br&gt;Info:
&lt;br&gt;Cheetah versions: 2.2.2 and 2.4.0
&lt;br&gt;OS: gentoo linux
&lt;br&gt;Python: 2.6.1, 2.6.2 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Patch follows:
&lt;br&gt;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
&lt;br&gt;--- /root/Compiler.py	2009-11-24 23:21:24.000000000 -0300
&lt;br&gt;+++ Compiler.py	2009-11-24 23:20:03.000000000 -0300
&lt;br&gt;@@ -1569,7 +1569,7 @@
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;unicodeMatch = unicodeDirectiveRE.search(source)
&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;encodingMatch = encodingDirectiveRE.match(source)
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;encodingMatch = encodingDirectiveRE.search(source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if unicodeMatch:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if encodingMatch:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;raise ParseError(
&lt;br&gt;++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Cheetahtemplate-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506812&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cheetahtemplate-discuss@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/cheetahtemplate-discuss-f3945.html&quot; embed=&quot;fixTarget[3945]&quot; target=&quot;_top&quot; &gt;cheetahtemplate-discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/encoding-problem-tp26506812p26506812.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26501128</id>
	<title>[Nms-cgi-support] [SPAM] Dating older woman and tip, Christian completely dating free friendship single site web</title>
	<published>2009-11-24T10:32:01Z</published>
	<updated>2009-11-24T10:32:01Z</updated>
	<author>
		<name>XansiOutsity</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;XansiOutsity (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26501128&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;petrosoft6@...&lt;/a&gt;) on Tuesday, November 24, 2009 at 18:32:01
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: Add adult dating new url, Agency bride dating russian, Dating kinard: 
&lt;br&gt;&amp;lt;a href=&lt;a href=&quot;http://european-dating.datinginrus.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://european-dating.datinginrus.com/&lt;/a&gt;&amp;gt;european dating&amp;lt;/a&amp;gt;, 
&lt;br&gt;&amp;lt;a href=&lt;a href=&quot;http://italian-dating-site.datinginrus.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://italian-dating-site.datinginrus.com/&lt;/a&gt;&amp;gt;italian dating site&amp;lt;/a&amp;gt;, 
&lt;br&gt;&amp;lt;a href=&lt;a href=&quot;http://site-for-dating.datinginrus.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://site-for-dating.datinginrus.com/&lt;/a&gt;&amp;gt;site for dating&amp;lt;/a&amp;gt;. 
&lt;br&gt;Dating camden. Bis dating single. Dating sasabe.
&lt;br&gt;&lt;br&gt;submit: Send Mail
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support---SPAM--Dating-older-woman-and-tip%2C-Christian-completely-dating-free-friendship-single-site-web-tp26501128p26501128.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26488687</id>
	<title>[Nms-cgi-support] Qui ouvrira le 1er hypermarché à Sfax; Quelles énergies futures pour la Tunisie; Faouzi benzarti: et si'il remportait la CAN; TIC et sortie de crise</title>
	<published>2009-11-23T16:36:12Z</published>
	<updated>2009-11-23T16:36:12Z</updated>
	<author>
		<name>Newsletter : Leaders.com.tn</name>
	</author>
	<content type="html">Si vous ne visualisez pas correctement cet e-mail, cliquez ici 
&lt;br&gt;&amp;nbsp;Newsletter - Lundi 23 Novembre 2009 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; 
&lt;br&gt;News &amp;nbsp; 
&lt;br&gt;&amp;nbsp;Les investissements dans les TIC accélérateurs de la sortie de crise
&lt;br&gt;A sept mois seulement du prochain Sommet Mondial sur la Société de l’Information qui se tiendra, après Tunis en 2005, à Genève du 10 au 14 mai 2010, le 4ème Forum ICT4ALL qui commence mardi à Yasmine Hammamet constitue une bonne ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;Banque, Finance et Monétique: petite expo devient le plus grand Salon d’Afrique
&lt;br&gt;La démonstration est évidente à l’œil nu ! Comment une simple exposition réservée au secteur bancaire exerce un véritable effet levier de modernisation et de professionnalisation en marketing financier ? Et comment, en trois ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;L’ATUGE lance le débat : Quelles énergies du futur pour la Tunisie ? La réponse de Kamel Rekik
&lt;br&gt;A quelques jours de Sommet de Copenhague sur le climat qui relance la question des énergies nouvelles et renouvelables, et juste après le lancement mondial de Desertec, l’ATUGE reprend sa bonne tradition des Mardi-Débats, en posant ce 1er ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;Qui ouvrira le 1er hypermarché à Sfax
&lt;br&gt;Maintenant que la capitale commence à se doter de grandes surfaces commerciales et que Sousse s’apprête à suivre le pas, qui remportera la première autorisation d’implantation d’un hypermarché à Sfax. Plus rien ne ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;Faouzi Benzarti: et s'il remportait la CAN
&lt;br&gt;Elle était la seule à ne pas figurer sur son palmarès. Après avoir remporté tous les titres (nationaux et continentaux) avec l'Espérance de Tunis, le Club Africain ou l'Etoile Sportive du Sahel, il rêvait de l'équipe nationale qu'il avait ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;Guichets Automatiques Bancaires : la nouvelle génération est opérationnelle en Tunisie
&lt;br&gt;Déposer des sommes d’argent et des chèques sur votre compte bancaire ou effectuer une opération de change alors que l’Agence est fermée, c’est désormais possible en Tunisie. Une nouvelle génération de Guichets Automatiques ... 
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp;L’Italie et l’Allemagne, prochaines étapes du Road Show Think Tunisia
&lt;br&gt;Après Paris, Londres, Barcelone et Madrid, c’est autour de l’Italie et de l’Allemagne d’accueillir, juste au lendemain de l’Aïd, la présentation de la Stratégie Tunisienne de l’Industrie à l’horizon ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Lu pour vous 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Kairouan, un musée à ciel ouvert 
&lt;br&gt;Les festivités organisées depuis le début de l'année à l'occasion de la proclamation de Kairouan, capitale de la culture islamique ont &amp;nbsp;été une occasion de renouer avec le passé glorieux de cette ville, première capitale de l'Occident ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Hommage à 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Zouheir Essafi: Une perte nationale
&lt;br&gt;Son nom vient d'être cité par un ancien ministre de la Santé et des Affaires sociales lors de l'évocation de ses souvenirs à un quotidien de la place. Le Professeur Zouheir Essafi était le premier tunisien Chef du service de chirurgie de ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Notes et Docs 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;BNA: une idée toujours neuve
&lt;br&gt;Il y a 50 ans, la Banque Nationale Agricole voyait le jour dans l’euphorie de l’indépendance nationale et de la proclamation de la République qui a suivi aussitôt après. Signe prémonitoire et sans doute chargé de signification, la ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Opinions 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Restructuartion des préparations aux métiers de la comptabilité, de la fiscalité et de l'audit financier
&lt;br&gt;La profession comptable a pris plusieurs initiatives pour donner à la Tutelle universitaire les moyens La prise en charge des orientations stratégiques du pays (ouverture des frontières en matière de services dont celui de la ... 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Blogs 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Comment peut-on être Tunisien (II)
&lt;br&gt;Mercredi 18 novembre 2009. Il est 21 heures (HT). Le fameux match Algérie-Egypte vient de prendre fin. Une grande soirée est organisée sur une chaîne satellitaire arabe pour commenter la rencontre. L'animateur commence par un tour de table: ... 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Nous vous prions de nous excuser si cette lettre d'information vous a causé un quelconque désagrément. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Vous pouvez vous desabonner de maniere controlee sur www.stopsending.com. Vous aurez besoin de saisir:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;nbsp;L'adresse de l'emetteur: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26488687&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leaders.nl@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - &amp;nbsp;La cle : Dj4tEtDnIlxGPormFnIxRMqwWWtMfp/1el2i0X4MDHkOKS0T0PAiXEYCiuQWdjFEyulZe0w3n+96
&lt;br&gt;H6LXfgsMag48LRrQ7SJaRiWK7RYxMVnK+Fl8
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Qui-ouvrira-le-1er-hypermarch%C3%A9-%C3%A0-Sfax--Quelles-%C3%A9nergies-futures-pour-la-Tunisie--Faouzi-benzarti%3A-et-si%27il-remportait-la-CAN--TIC-et-sortie-de-crise-tp26488687p26488687.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26486870</id>
	<title>[SPAM] CANCÚN $2,899 en NAVIDAD Hotel ALL INCLUSIVE</title>
	<published>2009-11-23T14:07:08Z</published>
	<updated>2009-11-23T14:07:08Z</updated>
	<author>
		<name>Luxury Beach Resorts</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp; 
&lt;br&gt;En caso de no poder ver correctamente este correo favor de dar clic aquí
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;En las próximas fiestas navideñas &amp;nbsp;disfrute de sol, arena y playa ......
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;email: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26486870&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;masinfo@...&lt;/a&gt;
&lt;br&gt;Este mensaje fue enviado para información de nuestras promociones. &amp;nbsp;No pretendemos saturar su correo ni causarle molestias. Este mensaje de correo electrónico no se considera &amp;quot;SPAM&amp;quot;, ya que cumple con lo establecido en el capítulo VIII BIS de los lineamientos sobre comercio electrónico publicados por la PROFECO, además de contener instrucciones y una forma electrónica para notificar y solicitar la cancelación de su envío y no continuar recibiéndolo. &amp;nbsp; &amp;nbsp; Si no desea recibir en un futuro estos mensajes favor de hacer clic en ( &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26486870&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;unsuscribe@...&lt;/a&gt; ) y será removido de nuestra lista en 72 horas. &amp;nbsp;Si desea hacer llegar esta información a otros agentes de viajes o particular, &amp;nbsp;proporciónenos sus dirección de correo electrónico HAGA CLIC AQUÍ &amp;nbsp;o envíe sus sugerencias. Si desea información sobre nuestros servios, contáctenos a &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26486870&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mtkg@...&lt;/a&gt;
&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-SPAM--CANC%C3%9AN-%242%2C899-en-NAVIDAD-Hotel-ALL-INCLUSIVE-tp26486870p26486870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26483920</id>
	<title>Re: [Nms-cgi-support] FormMail.pl Code</title>
	<published>2009-11-23T10:59:04Z</published>
	<updated>2009-11-23T10:59:04Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On Mon, Nov 23, 2009 at 3:42 AM, Crosswear.net New Zealands premiere
&lt;br&gt;Christian Clothing Supplier &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26483920&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amanda@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the reply!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've looked at it a bit more and realised that authentication is
&lt;br&gt;&amp;gt; required....does the script allow for this? How would I add it in if not?
&lt;br&gt;&lt;br&gt;Conor, the program does not allow for this. See the following thread
&lt;br&gt;from the list archive:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/-Nms-cgi-devel--Re%3A-smtp-authentication-for-formmail-td799039.html#a799039&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/-Nms-cgi-devel--Re%3A-smtp-authentication-for-formmail-td799039.html#a799039&lt;/a&gt;&lt;br&gt;&lt;br&gt;Todd
&lt;br&gt;&lt;br&gt;Note: The current version of NMS FormMail (3.14c1) was released on 2004-08-11.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--FormMail.pl-Code-tp26471897p26483920.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26476640</id>
	<title>[Nms-cgi-support] [SPAM] http://www.hooznet.com - Contact needed</title>
	<published>2009-11-23T03:48:49Z</published>
	<updated>2009-11-23T03:48:49Z</updated>
	<author>
		<name>Marc Schneider.net</name>
	</author>
	<content type="html">I am Dr. Marc Schneider and I work for Multilingual Search Engine
&lt;br&gt;Optimization Inc. in Washington DC ( Tel: 1 202-250-3645) - I would
&lt;br&gt;like to speak with the person in charge of your international
&lt;br&gt;clientele. Who is my contact? Who should I speak to??
&lt;br&gt;&lt;br&gt;In fact, after visiting &lt;a href=&quot;http://www.hooznet.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.hooznet.com&lt;/a&gt;&amp;nbsp;, I have noticed that your
&lt;br&gt;website
&lt;br&gt;cannot be found on foreign search engines (I tested it on Hispanic
&lt;br&gt;search engines, German search engines, Asian search engines, etc.) Our
&lt;br&gt;company is specialized in multilingual search engine promotions in 28
&lt;br&gt;languages . From the Japanese Google to the German Yahoo, from the AOL
&lt;br&gt;in Spanish to the MSN in Chinese, we can show you how to develop a
&lt;br&gt;true international online presence by promoting your website on
&lt;br&gt;foreign search engines.
&lt;br&gt;&lt;br&gt;Let us show you how to develop a presence on the multilingual web
&lt;br&gt;without having to translate your website: It is not necessary to
&lt;br&gt;translate your website in order to submit to foreign search engines,
&lt;br&gt;however, you need to have at least 1 page in Japanese optimized with
&lt;br&gt;Japanese keywords and meta tags in order to submit to Japanese search
&lt;br&gt;engines, at least 1 page in Spanish optimized with Spanish keywords in
&lt;br&gt;order to submit to Hispanic search engines and so on...
&lt;br&gt;&lt;br&gt;I strongly suggest that you watch our online presentation which will
&lt;br&gt;explains clearly how to get top rankings on foreign search engines
&lt;br&gt;with only 1 entry page per language (click on the following link or
&lt;br&gt;copy-paste it into your web browser): &lt;a href=&quot;http://www.mplw.net/demo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mplw.net/demo&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt;From the Japanese Google to the German Yahoo, from the AOL in Spanish
&lt;br&gt;to the MSN in Chinese, get users to find your website when searching
&lt;br&gt;with YOUR KEYWORDS in their Native language.
&lt;br&gt;&lt;br&gt;Please call me at +1 (202) 250-3645 or email me and let's work on
&lt;br&gt;giving your website the true international exposure which it deserves
&lt;br&gt;to have with foreign native online users!! 
&lt;br&gt;&lt;br&gt;Regards, 
&lt;br&gt;&lt;br&gt;Marc Schneider, Ph.D. 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26476640&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Marcs@...&lt;/a&gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26476640&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Marcs@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Multilingual Search Engine Optimization Inc.
&lt;br&gt;&lt;br&gt;1250 Connecticut Ave N.W. Suite 200
&lt;br&gt;&lt;br&gt;Washington, DC 20036 USA
&lt;br&gt;&lt;br&gt;TEL: +1 (202) 250-3645 - FAX: 1 (202)-318-2453
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.mplw.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mplw.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;Multilingual Search Engine Promotion Services since 1999.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support---SPAM--http%3A--www.hooznet.com---Contact-needed-tp26476640p26476640.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26476260</id>
	<title>Re: Cheetah at PyCon Atlanta 2010</title>
	<published>2009-11-23T03:21:51Z</published>
	<updated>2009-11-23T03:21:51Z</updated>
	<author>
		<name>Bugzilla from jbq@caraldi.com</name>
	</author>
	<content type="html">2009/11/17 &amp;nbsp;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26476260&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tyler@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Long-time users might be aware that Cheetah was originally introduced at
&lt;br&gt;&amp;gt; PyCon10 by Mike, Tavis and Ian.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As I look over my refactoring work for Python 3 support and the progress we've made over
&lt;br&gt;&amp;gt; the past few months, I'm wondering if it would be worth &amp;quot;re-introducing&amp;quot;
&lt;br&gt;&amp;gt; Cheetah at PyCon 2010 this upcoming February in Atlanta. I lament that Cheetah
&lt;br&gt;&amp;gt; has seemingly fallen out of favor among newer Python developers (Django and the
&lt;br&gt;&amp;gt; Google App Engine aren't doing us any favors) but I would like to start to turn
&lt;br&gt;&amp;gt; that around.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have a couple of questions for you, delightful members of the Cheetah
&lt;br&gt;&amp;gt; community:
&lt;br&gt;&amp;gt;   * Talk proposals are closed currently, but would anybody be interested in
&lt;br&gt;&amp;gt;     participating in a development sprint and/or Cheetah meetup during the
&lt;br&gt;&amp;gt;     sprint days?
&lt;br&gt;&amp;gt;   * Suggestions on how to improve Cheetah's interestingness to the newer crowd
&lt;br&gt;&amp;gt;     of (primarily web) developers using Python and other templating systems?
&lt;br&gt;&amp;gt;   * Anybody using Cheetah at a corporate level that would consider helping
&lt;br&gt;&amp;gt;     with airfare costs from SFO to ATL? (have to ask ;))
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've not ordered a plane ticket or reserved a hotel room yet, I'm still
&lt;br&gt;&amp;gt; determining whether PyCon will be worth the ~$1000 it will cost me to get
&lt;br&gt;&amp;gt; there, in addition to the week of vacation time. I'd love to have a good reason
&lt;br&gt;&amp;gt; to justify the expense ;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Interested in hearing how many other Cheetah folks are planning to attend
&lt;/div&gt;&lt;br&gt;Hello Robert,
&lt;br&gt;&lt;br&gt;Silly question, did you ask Slide?
&lt;br&gt;-- 
&lt;br&gt;Jean-Baptiste Quenot
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Cheetahtemplate-discuss mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26476260&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Cheetahtemplate-discuss@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/cheetahtemplate-discuss&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/cheetahtemplate-discuss-f3945.html&quot; embed=&quot;fixTarget[3945]&quot; target=&quot;_top&quot; &gt;cheetahtemplate-discuss&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cheetah-at-PyCon-Atlanta-2010-tp26383981p26476260.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26474523</id>
	<title>Re: [Nms-cgi-support] FormMail.pl Code</title>
	<published>2009-11-23T00:42:28Z</published>
	<updated>2009-11-23T00:42:28Z</updated>
	<author>
		<name>Crosswear.net New Zealands premiere Christian Clothing Supplier</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;Thanks for the reply!
&lt;br&gt;&lt;br&gt;I've looked at it a bit more and realised that authentication is 
&lt;br&gt;required....does the script allow for this? How would I add it in if not?
&lt;br&gt;&lt;br&gt;Thanks again for your time!
&lt;br&gt;Conor
&lt;br&gt;&lt;br&gt;--------------------------------------------------
&lt;br&gt;From: &amp;quot;Dave Cross&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474523&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dave@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Sent: Monday, November 23, 2009 9:16 PM
&lt;br&gt;To: &amp;quot;Crosswear.net New Zealands premiere Christian Clothing Supplier&amp;quot; 
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474523&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;amanda@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Cc: &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474523&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Subject: Re: [Nms-cgi-support] FormMail.pl Code
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 23/11/09 02:08, Crosswear.net New Zealands premiere Christian Clothing 
&lt;br&gt;&amp;gt; Supplier wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hello.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've gotten so far through the setup of the code but there is one
&lt;br&gt;&amp;gt;&amp;gt; error that I cannot figure out. When I click the submit button on
&lt;br&gt;&amp;gt;&amp;gt; the form the following message appears after the script has run:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Application Error
&lt;br&gt;&amp;gt;&amp;gt; An error has occurred in the program
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; connect to [smtp.bizmail.yahoo.com:25]: No route to host at (eval 8) line 
&lt;br&gt;&amp;gt;&amp;gt; 70.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Do you have any idea what the problem is? Would be great if you could
&lt;br&gt;&amp;gt;&amp;gt; help! Thanks for your time!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It's a networking issue. Your web server can't connect to the mail server 
&lt;br&gt;&amp;gt; that you have told it to use to send email.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Either there's a typo in the mail server name (smtp.bizmail.yahoo.com) or 
&lt;br&gt;&amp;gt; there's some problem with the network configuration on your web server. In 
&lt;br&gt;&amp;gt; that case, you'll need to get the sysadmin to investigate.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dave...
&lt;/div&gt;Blessings from Amanda @ Crosswear
&lt;br&gt;Please reply to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26474523&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;info@...&lt;/a&gt;
&lt;br&gt;&amp; pop me in your address book for future reference
&lt;br&gt;&lt;br&gt;If you received this email by mistake or wish to be removed from our mailing 
&lt;br&gt;list please just reply to this email and write 'unsubscribe' or 'mistake' in 
&lt;br&gt;the subject box and we will endeavor to remove you asap. Crosswear apologise 
&lt;br&gt;for any inconvenience caused.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--FormMail.pl-Code-tp26471897p26474523.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26474366</id>
	<title>Re: [Nms-cgi-support] FormMail.pl Code</title>
	<published>2009-11-23T00:16:24Z</published>
	<updated>2009-11-23T00:16:24Z</updated>
	<author>
		<name>Dave Cross</name>
	</author>
	<content type="html">On 23/11/09 02:08, Crosswear.net New Zealands premiere Christian 
&lt;br&gt;Clothing Supplier wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've gotten so far through the setup of the code but there is one
&lt;br&gt;&amp;gt; error that I cannot figure out. When I click the submit button on
&lt;br&gt;&amp;gt; the form the following message appears after the script has run:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Application Error
&lt;br&gt;&amp;gt; An error has occurred in the program
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; connect to [smtp.bizmail.yahoo.com:25]: No route to host at (eval 8) line 70.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do you have any idea what the problem is? Would be great if you could
&lt;br&gt;&amp;gt; help! Thanks for your time!
&lt;/div&gt;&lt;br&gt;It's a networking issue. Your web server can't connect to the mail 
&lt;br&gt;server that you have told it to use to send email.
&lt;br&gt;&lt;br&gt;Either there's a typo in the mail server name (smtp.bizmail.yahoo.com) 
&lt;br&gt;or there's some problem with the network configuration on your web 
&lt;br&gt;server. In that case, you'll need to get the sysadmin to investigate.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Dave...
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--FormMail.pl-Code-tp26471897p26474366.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26473341</id>
	<title>[Nms-cgi-support] Agency boston dating, Adam brody dating paris hilton</title>
	<published>2009-11-22T22:31:59Z</published>
	<updated>2009-11-22T22:31:59Z</updated>
	<author>
		<name>Stensugplausia</name>
	</author>
	<content type="html">Below is the result of your feedback form. &amp;nbsp;It was submitted by
&lt;br&gt;Stensugplausia (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26473341&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sherriullah6@...&lt;/a&gt;) on Monday, November 23, 2009 at 06:31:59
&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;description: Dating luxor, Dating new braintree, Catholic dating dating online: 
&lt;br&gt;&amp;lt;a href=&lt;a href=&quot;http://dating-kanosh.datinginrus.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dating-kanosh.datinginrus.com/&lt;/a&gt;&amp;gt;dating kanosh&amp;lt;/a&amp;gt;, 
&lt;br&gt;&amp;lt;a href=&lt;a href=&quot;http://ads-adult-dating-personal.datinginrus.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ads-adult-dating-personal.datinginrus.com/&lt;/a&gt;&amp;gt;ads adult dating personal&amp;lt;/a&amp;gt;, 
&lt;br&gt;&amp;lt;a href=&lt;a href=&quot;http://dating-fairton.datinginrus.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dating-fairton.datinginrus.com/&lt;/a&gt;&amp;gt;dating fairton&amp;lt;/a&amp;gt;. 
&lt;br&gt;Dating montgomeryville. Alicia keys dating usher. Dating springview.
&lt;br&gt;&lt;br&gt;submit: Send Mail
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;To unsubscribe from this mailing list visit
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-support&lt;/a&gt;&lt;br&gt;and follow the simple instructions.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/nms-cgi-support-f4296.html&quot; embed=&quot;fixTarget[4296]&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Nms-cgi-support--Agency-boston-dating%2C-Adam-brody-dating-paris-hilton-tp26473341p26473341.html" />
</entry>

</feed>
