<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-4294</id>
	<title>Nabble - nms-cgi-devel</title>
	<updated>2009-08-03T19:33:24Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/nms-cgi-devel-f4294.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/nms-cgi-devel-f4294.html" />
	<subtitle type="html">Mailing list archive for nms-cgi-devel</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-24801411</id>
	<title>TFMail patch for anti-spam and CRLF decoding</title>
	<published>2009-08-03T19:33:24Z</published>
	<updated>2009-08-03T19:33:24Z</updated>
	<author>
		<name>Ben Scott-4</name>
	</author>
	<content type="html">Hello, world!
&lt;br&gt;&lt;br&gt;&amp;nbsp; I just joined this list last week. &amp;nbsp;Haven't seen any traffic yet.
&lt;br&gt;Anybody here?
&lt;br&gt;&lt;br&gt;&amp;nbsp; Below is a patch against TFmail 1.38. &amp;nbsp;It makes the following changes:
&lt;br&gt;&lt;br&gt;1. In submitted form fields, converts &amp;#13;&amp;#10; (encoded CR LF)
&lt;br&gt;sequences into newlines. &amp;nbsp;Some browsers encode newlines in TEXTAREA
&lt;br&gt;fields. &amp;nbsp;Before, users would get hard-to-read mess. &amp;nbsp;Now they get
&lt;br&gt;properly formatted text. &amp;nbsp;This may break scripts that assume
&lt;br&gt;one-line-per-field, but our submissions go to people, not scripts.
&lt;br&gt;&lt;br&gt;2. Some basic features to counter spam submissions to HTML forms.
&lt;br&gt;&lt;br&gt;&amp;nbsp; The anti-spam features discard form submissions which trigger spam
&lt;br&gt;detectors. &amp;nbsp;They controlled by the following new config options:
&lt;br&gt;&lt;br&gt;reject_html: declares form fields which should never contain HTML
&lt;br&gt;&lt;br&gt;trapfield: declares form fields which should never contain anything
&lt;br&gt;&lt;br&gt;spam_redirect: URL to redirect browser to if spam detected
&lt;br&gt;&lt;br&gt;spam_template: file name of template to feed browser if spam detected
&lt;br&gt;&lt;br&gt;spamlog: file name of log for spam detections
&lt;br&gt;&lt;br&gt;&amp;nbsp; It appears most spam scripts blast HTML into TEXTAREAs, so by
&lt;br&gt;looking for HTML in fields that should never contain it, we can detect
&lt;br&gt;spam. &amp;nbsp;Likewise, most spam scripts appear to blast something into
&lt;br&gt;every field. &amp;nbsp;By configuring a &amp;quot;trap field&amp;quot; which should be left
&lt;br&gt;blank, spam can be detected. &amp;nbsp;CSS can be used to make a trap hidden;
&lt;br&gt;most spam scripts apparently don't parse CSS.
&lt;br&gt;&lt;br&gt;&amp;nbsp; The HTML detection is currently ridiculously simplistic, but it also
&lt;br&gt;appears to be effective for almost all cases. &amp;nbsp;In fact, I haven't had
&lt;br&gt;a need to employ a trap field yet.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Response on spam detection is much like response to missing input
&lt;br&gt;for required fields. &amp;nbsp;You can use an HTML template or redirect to a
&lt;br&gt;URL. &amp;nbsp;The template is parsed like all the others, so if you want, you
&lt;br&gt;can even have it list what fields triggered. &amp;nbsp;Useful for debugging.
&lt;br&gt;For real-world use, it's not a good idea to tell spammers what to do
&lt;br&gt;differently. &amp;nbsp;We use a generic &amp;quot;We could not process your submission.
&lt;br&gt;Please contact blah blah blah.&amp;quot; message for that.
&lt;br&gt;&lt;br&gt;&amp;nbsp; You can optionally log spam detections to a log file. &amp;nbsp;This could be
&lt;br&gt;used to monitor how many spam attempts you're getting. &amp;nbsp;It also logs
&lt;br&gt;the fields which triggered the detection, so you can see if the
&lt;br&gt;spammers are trying different things. &amp;nbsp;It may also reveal false
&lt;br&gt;positives.
&lt;br&gt;&lt;br&gt;&amp;nbsp; Hope this helps someone!
&lt;br&gt;&lt;br&gt;-- Ben Scott (AKA bscott, AKA DragonHawk, AKA mailvortex)
&lt;br&gt;&lt;br&gt;--- TFmail-1.38.pl	2006-02-09 21:40:04.000000000 -0500
&lt;br&gt;+++ TFmail.pl	2009-08-03 22:12:16.481039400 -0400
&lt;br&gt;@@ -2,6 +2,7 @@
&lt;br&gt;&amp;nbsp;use strict;
&lt;br&gt;&amp;nbsp;#
&lt;br&gt;&amp;nbsp;# $Id: TFmail.pl,v 1.38 2006/02/09 21:40:27 gellyfish Exp $
&lt;br&gt;+# Modifications by bscott, release 1, 2009 Aug 03
&lt;br&gt;&amp;nbsp;#
&lt;br&gt;&amp;nbsp;# USER CONFIGURATION SECTION
&lt;br&gt;&amp;nbsp;# --------------------------
&lt;br&gt;@@ -52,6 +53,8 @@
&lt;br&gt;&amp;nbsp;use lib LIBDIR;
&lt;br&gt;&amp;nbsp;use NMStreq;
&lt;br&gt;&amp;nbsp;use NMSCharset;
&lt;br&gt;+use POSIX qw(strftime); # spam_log generates its own datestamps
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;BEGIN
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; if (MIME_LITE)
&lt;br&gt;@@ -71,6 +74,7 @@
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; use vars qw($VERSION);
&lt;br&gt;&amp;nbsp; &amp;nbsp; $VERSION = substr q$Revision: 1.38 $, 10, -1;
&lt;br&gt;+ &amp;nbsp; $VERSION .= '-bscott1';
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp;delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
&lt;br&gt;@@ -168,6 +172,8 @@
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if ( check_required_fields($treq) )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ( check_spam_content($treq) )
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setup_input_fields($treq);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; my $confto = send_main_email($treq, $recipients);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if ( HTMLFILE_ROOT ne '' )
&lt;br&gt;@@ -191,6 +197,12 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;spam_html($treq);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;spam_log($treq) if (LOGFILE_ROOT ne '');
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;missing_html($treq);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;@@ -529,6 +541,50 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;+=item check_spam_content ( TREQ )
&lt;br&gt;+
&lt;br&gt;+Returns false if any fields contain apparent spam,
&lt;br&gt;+true otherwise.
&lt;br&gt;+
&lt;br&gt;+=cut
&lt;br&gt;+
&lt;br&gt;+sub check_spam_content
&lt;br&gt;+{
&lt;br&gt;+ &amp;nbsp; my ($treq) = @_;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; my @has_spam = (); # fields found to have spam
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # check fields configured to prohibit HTML
&lt;br&gt;+ &amp;nbsp; my @reject_html = split /\s*,\s*/, $treq-&amp;gt;config('reject_html', '');
&lt;br&gt;+ &amp;nbsp; foreach my $r (@reject_html)
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;# this is VERY basic at this point. we are only looking for
&lt;br&gt;&amp;lt;/a&amp;gt;, something common in almost all
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;# spam messages that come through and very unlikely to be
&lt;br&gt;entered by a legitimate user.
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;push @has_spam, $r if $treq-&amp;gt;param($r) =~ m{&amp;lt;\s*/a\s*&amp;gt;}i;
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; my @trapfield = split /\s*,\s*/, $treq-&amp;gt;config('trapfield', '');
&lt;br&gt;+ &amp;nbsp; foreach my $r (@trapfield)
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;# if a trapfield has any non-whitespace content, it is spam
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;push @has_spam, $r if $treq-&amp;gt;param($r) =~ m{\S+}i;
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # if any fields had spam, we reject the submission, after
&lt;br&gt;installing field handlers
&lt;br&gt;+ &amp;nbsp; if (scalar @has_spam)
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;$treq-&amp;gt;install_foreach(
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'spam_field',
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [map { {name =&amp;gt; $_, value =&amp;gt; $treq-&amp;gt;param($_)} } @has_spam]
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;return 0; # has spam
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+ &amp;nbsp; else
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;return 1; # no spam detected
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+}
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;=item setup_input_fields ( TREQ )
&lt;br&gt;&lt;br&gt;&amp;nbsp;Installs a FOREACH directive in the TREQ object to
&lt;br&gt;@@ -713,7 +769,10 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$save = clean_template($treq);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;- &amp;nbsp; $msg-&amp;gt;{body} = $treq-&amp;gt;process_template($template, 'email', undef);
&lt;br&gt;+ &amp;nbsp; my $body;
&lt;br&gt;+ &amp;nbsp; $body = $treq-&amp;gt;process_template($template, 'email', undef);
&lt;br&gt;+ &amp;nbsp; $body =~ s{&amp;#13;&amp;#10;}{\n}g;	# convert any &amp;#13;&amp;#10; sequences to newlines
&lt;br&gt;+ &amp;nbsp; $msg-&amp;gt;{body} = $body;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; if ( dangerous_recipient($treq))
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;@@ -1043,8 +1102,9 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; my ($treq) = @_;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; my $file = $treq-&amp;gt;config('logfile', '');
&lt;br&gt;+ &amp;nbsp; return unless $file; # no logging if config didn't request it
&lt;br&gt;&amp;nbsp; &amp;nbsp; $file = $treq-&amp;gt;process_template(&amp;quot;\%$file&amp;quot;,'email', undef);
&lt;br&gt;- &amp;nbsp; return unless $file;
&lt;br&gt;+ &amp;nbsp; return unless $file; # no logging if that left us nothing
&lt;br&gt;&amp;nbsp; &amp;nbsp; $file =~ m#^([\/\-\w]{1,100})$# or die &amp;quot;bad logfile name [$file]&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; $file = $1;
&lt;br&gt;&lt;br&gt;@@ -1177,6 +1237,87 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;+=item spam_html ( TREQ )
&lt;br&gt;+
&lt;br&gt;+Generates the output page in the case where submission
&lt;br&gt;+failed anti-spam checks.
&lt;br&gt;+
&lt;br&gt;+=cut
&lt;br&gt;+
&lt;br&gt;+sub spam_html
&lt;br&gt;+{
&lt;br&gt;+ &amp;nbsp; my ($treq) = @_;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; my $redirect = $treq-&amp;gt;config('spam_redirect');
&lt;br&gt;+ &amp;nbsp; if ( $redirect )
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;print &amp;quot;Location: $redirect\n\n&amp;quot;;
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+ &amp;nbsp; else
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;html_page($treq, $treq-&amp;gt;config('spam_template','spam'));
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+}
&lt;br&gt;+
&lt;br&gt;+=item spam_log ( TREQ )
&lt;br&gt;+
&lt;br&gt;+Logs submissions rejected as spam, if so configured.
&lt;br&gt;+
&lt;br&gt;+=cut
&lt;br&gt;+
&lt;br&gt;+sub spam_log
&lt;br&gt;+{
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; my ($treq) = @_;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # get requested log file name from config
&lt;br&gt;+ &amp;nbsp; my $spamlog = $treq-&amp;gt;config('spamlog', '');
&lt;br&gt;+ &amp;nbsp; return unless $spamlog; # no logging if config didn't request it
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # make sure log file contains only word characters, dir separator
&lt;br&gt;(/), or dash (-)
&lt;br&gt;+ &amp;nbsp; $spamlog =~ m#^([\/\-\w]{1,100})$# or die &amp;quot;bad spam log file name
&lt;br&gt;[$spamlog]&amp;quot;;
&lt;br&gt;+ &amp;nbsp; $spamlog = $1; # de-taint
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # build full path name of log file
&lt;br&gt;+ &amp;nbsp; $spamlog = LOGFILE_ROOT . '/' . $spamlog . LOGFILE_EXT;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # build log message
&lt;br&gt;+ &amp;nbsp; my $logtrt =
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'%' .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;strftime ('%Y-%m-%d %H:%M:%S ', localtime) .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'{= env.REMOTE_ADDR =} ' .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'(' .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'via=&amp;lt;{= env.HTTP_VIA =}&amp;gt; ' .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'UA=&amp;lt;{= env.HTTP_USER_AGENT =}&amp;gt;' .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'): ' .
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'{= FOREACH spam_field =}&amp;lt;{= name =}&amp;gt;=&amp;lt;{= value =}&amp;gt; {= END =}'
&lt;br&gt;+ &amp;nbsp; ;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; open SPAMLOG,&amp;quot;+&amp;gt;&amp;gt;$spamlog&amp;quot; or die &amp;quot;$spamlog: open: $!&amp;quot;;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # get lock for writing, or about
&lt;br&gt;+ &amp;nbsp; if (!(flock SPAMLOG, LOCK_EX))
&lt;br&gt;+ &amp;nbsp; {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;warn &amp;quot;$spamlog: flock: $!&amp;quot;;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;close SPAMLOG or die &amp;quot;$spamlog: close: $1&amp;quot;;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;return;
&lt;br&gt;+ &amp;nbsp; }
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # seek to end for append
&lt;br&gt;+ &amp;nbsp; seek SPAMLOG, 0, 2 or die &amp;quot;$spamlog: seek: $!&amp;quot;;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # record the log entry
&lt;br&gt;+ &amp;nbsp; $treq-&amp;gt;process_template(
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;$logtrt,
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;'email',
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;\*SPAMLOG
&lt;br&gt;+ &amp;nbsp; );
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; # finish up
&lt;br&gt;+ &amp;nbsp; close SPAMLOG or die &amp;quot;$spamlog: close: $1&amp;quot;;
&lt;br&gt;+
&lt;br&gt;+} # spam_log
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;=item return_html ( TREQ )
&lt;br&gt;&lt;br&gt;&amp;nbsp;Generates the output page in the case where the email has been
&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;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24801411&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TFMail-patch-for-anti-spam-and-CRLF-decoding-tp24801411p24801411.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23587138</id>
	<title>nms on Git</title>
	<published>2009-05-17T12:36:14Z</published>
	<updated>2009-05-17T12:36:14Z</updated>
	<author>
		<name>Dave Cross-2</name>
	</author>
	<content type="html">&lt;br&gt;Hello all,
&lt;br&gt;&lt;br&gt;Things have been pretty quiet round here for some time. The &amp;nbsp;last
&lt;br&gt;check-in to the nms code repository was in 2006 or something like that.
&lt;br&gt;&lt;br&gt;I'm not sure why that is. Perhaps the nms programs are all finished and
&lt;br&gt;there's nothing more to do. Or perhaps it's all a bit too much of a
&lt;br&gt;hassle to be involved.
&lt;br&gt;&lt;br&gt;I'll admit that we all got a bit stuck in the past and we were still
&lt;br&gt;using Sourceforge's CVS repositories. And who remembers how to still use
&lt;br&gt;CVS? I know it has me scratching my head every time I consider doing
&lt;br&gt;anything with nms.
&lt;br&gt;&lt;br&gt;So this afternoon, I've been looking around and I discovered that
&lt;br&gt;Sourceforge offer Git support for all of their projects. And I've moved
&lt;br&gt;nms to Git (via Subversion - as that seemed the easiest route to take).
&lt;br&gt;&lt;br&gt;You can find all the details you'll need to access the Git repository at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;https://sourceforge.net/scm/?type=git&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/scm/?type=git&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;And there's a Gitweb installation at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://nms-cgi.git.sourceforge.net/git/gitweb.cgi?p=nms-cgi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.git.sourceforge.net/git/gitweb.cgi?p=nms-cgi&lt;/a&gt;&lt;br&gt;&lt;br&gt;In order to have write access to the repository, you'll need to be a
&lt;br&gt;member of the project and I'll need to give you access. But I'm happy to
&lt;br&gt;be pretty liberal with those permissions.
&lt;br&gt;&lt;br&gt;Let me know if you need any more information. Or if you have any plans
&lt;br&gt;to work on anything for the project.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Dave...
&lt;br&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables 
&lt;br&gt;unlimited royalty-free distribution of the report engine 
&lt;br&gt;for externally facing server and web deployment. 
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23587138&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/nms-on-Git-tp23587138p23587138.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21941279</id>
	<title>Re: Guestbook IP Address Strangeness</title>
	<published>2009-02-10T11:52:09Z</published>
	<updated>2009-02-10T11:52:09Z</updated>
	<author>
		<name>Randal L. Schwartz</name>
	</author>
	<content type="html">glad to hear you solved your problem.
&lt;br&gt;-- 
&lt;br&gt;Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21941279&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;merlyn@...&lt;/a&gt;&amp;gt; &amp;lt;URL:&lt;a href=&quot;http://www.stonehenge.com/merlyn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stonehenge.com/merlyn/&lt;/a&gt;&amp;gt;
&lt;br&gt;Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
&lt;br&gt;See &lt;a href=&quot;http://methodsandmessages.vox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://methodsandmessages.vox.com/&lt;/a&gt;&amp;nbsp;for Smalltalk and Seaside discussion
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
&lt;br&gt;software. With Adobe AIR, Ajax developers can use existing skills and code to
&lt;br&gt;build responsive, highly engaging applications that combine the power of local
&lt;br&gt;resources and data with the reach of the web. Download the Adobe AIR SDK and
&lt;br&gt;Ajax docs to start building applications today-&lt;a href=&quot;http://p.sf.net/sfu/adobe-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/adobe-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21941279&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-IP-Address-Strangeness-tp21733356p21941279.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21904655</id>
	<title>Re: Guestbook IP Address Strangeness</title>
	<published>2009-02-08T14:59:43Z</published>
	<updated>2009-02-08T14:59:43Z</updated>
	<author>
		<name>Lewis Kirk-2</name>
	</author>
	<content type="html">At 12:20 PM -0800 1/29/09, Randal L. Schwartz wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;Lewis&amp;quot; == Lewis Kirk &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21904655&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms1@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Lewis&amp;gt; Is there some reason that $ENV{REMOTE_ADDR} picks up this syntax? Or is
&lt;br&gt;&amp;gt;Lewis&amp;gt; it a spam technique?
&lt;br&gt;&amp;gt;
&lt;br&gt;Randal&amp;gt; If you're sure you're looking at REMOTE_ADDR, and it's not simply an IP
&lt;br&gt;Randal&amp;gt; address, this would be a question for your hosting operator, not for us.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;OK. I found it. I am using Guestbook.pl,v 1.52 and it uses POSIX. There are two places where I replaced &amp;quot;my $remote = remote_host();&amp;quot; &amp;nbsp;with &amp;quot;my $remote = $ENV{REMOTE_ADDR};&amp;quot;. Now I get a normal IP address which I can use in the banned list.
&lt;br&gt;&lt;br&gt;Then I tried using my $remote = remote_addr(); and that seems to work also with POSIX.
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
&lt;br&gt;software. With Adobe AIR, Ajax developers can use existing skills and code to
&lt;br&gt;build responsive, highly engaging applications that combine the power of local
&lt;br&gt;resources and data with the reach of the web. Download the Adobe AIR SDK and
&lt;br&gt;Ajax docs to start building applications today-&lt;a href=&quot;http://p.sf.net/sfu/adobe-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/adobe-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21904655&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-IP-Address-Strangeness-tp21733356p21904655.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21735505</id>
	<title>Re: Guestbook IP Address Strangeness</title>
	<published>2009-01-29T12:20:19Z</published>
	<updated>2009-01-29T12:20:19Z</updated>
	<author>
		<name>Randal L. Schwartz</name>
	</author>
	<content type="html">&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;Lewis&amp;quot; == Lewis Kirk &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21735505&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms1@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&lt;br&gt;Lewis&amp;gt; Is there some reason that $ENV{REMOTE_ADDR} picks up this syntax? Or is
&lt;br&gt;Lewis&amp;gt; it a spam technique?
&lt;br&gt;&lt;br&gt;If you're sure you're looking at REMOTE_ADDR, and it's not simply an IP
&lt;br&gt;address, this would be a question for your hosting operator, not for us.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21735505&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;merlyn@...&lt;/a&gt;&amp;gt; &amp;lt;URL:&lt;a href=&quot;http://www.stonehenge.com/merlyn/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.stonehenge.com/merlyn/&lt;/a&gt;&amp;gt;
&lt;br&gt;Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
&lt;br&gt;See &lt;a href=&quot;http://methodsandmessages.vox.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://methodsandmessages.vox.com/&lt;/a&gt;&amp;nbsp;for Smalltalk and Seaside discussion
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by:
&lt;br&gt;SourcForge Community
&lt;br&gt;SourceForge wants to tell your story.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/sf-spreadtheword&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/sf-spreadtheword&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21735505&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-IP-Address-Strangeness-tp21733356p21735505.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21733356</id>
	<title>Guestbook IP Address Strangeness</title>
	<published>2009-01-29T10:54:53Z</published>
	<updated>2009-01-29T10:54:53Z</updated>
	<author>
		<name>Lewis Kirk-2</name>
	</author>
	<content type="html">I have been using the Guestbook with the admin and delete the spam. I sometimes block the IP addresses if they are from known spam spewers and become annoying; however, lately the IP addresses being displayed in the log look like:
&lt;br&gt;&lt;br&gt;216-31-225-6.static-ip.telepacific.net
&lt;br&gt;198.235.14.30
&lt;br&gt;ip-72-55-188-250.static.privatedns.com
&lt;br&gt;82.173.92.64.static.reverse.ltdomains.com
&lt;br&gt;198.65.122.125
&lt;br&gt;ns.km10329.keymachine.de
&lt;br&gt;41.220.227.2
&lt;br&gt;mailer2.mtvi.com
&lt;br&gt;cpe-024-168-247-224.sc.res.rr.com
&lt;br&gt;ns.km10329.keymachine.de
&lt;br&gt;72.52.96.51
&lt;br&gt;mailer2.mtvi.com
&lt;br&gt;151.11.232.92
&lt;br&gt;74.223.57.126.nw.nuvox.net
&lt;br&gt;89-149-241-118.internetserviceteam.com
&lt;br&gt;www.macs.net
&lt;br&gt;host99.190-139-105.telecom.net.ar
&lt;br&gt;89-149-227-238.internetserviceteam.com
&lt;br&gt;&lt;br&gt;(I modified the script so that it will list only IP addresses to make it easier to copy them to the banned list.)
&lt;br&gt;&lt;br&gt;Is there some reason that $ENV{REMOTE_ADDR} picks up this syntax? Or is it a spam technique?
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by:
&lt;br&gt;SourcForge Community
&lt;br&gt;SourceForge wants to tell your story.
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/sf-spreadtheword&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/sf-spreadtheword&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21733356&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-IP-Address-Strangeness-tp21733356p21733356.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20212988</id>
	<title>pls add me!</title>
	<published>2008-10-28T11:14:38Z</published>
	<updated>2008-10-28T11:14:38Z</updated>
	<author>
		<name>EGWU UCHENNA</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;DIV&gt;Kindly add me to your subscription/newsletter list.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thank you.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Uchenna Egwu&lt;/DIV&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20212988&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pls-add-me%21-tp20212988p20212988.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20212618</id>
	<title>pls add me!</title>
	<published>2008-10-28T10:56:04Z</published>
	<updated>2008-10-28T10:56:04Z</updated>
	<author>
		<name>EGWU UCHENNA</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;&lt;DIV&gt;Kindly add me to your subscription/newsletter list.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thank ytou.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Uchenna Egwu&lt;/DIV&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;

      &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20212618&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/pls-add-me%21-tp20212618p20212618.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-20093408</id>
	<title>Delurk, and wish for a survey script (sorry, &quot;program&quot;)</title>
	<published>2008-10-21T08:47:46Z</published>
	<updated>2008-10-21T08:47:46Z</updated>
	<author>
		<name>Samuel Murray (Krugersdorp)</name>
	</author>
	<content type="html">G'day everyone
&lt;br&gt;&lt;br&gt;I did a brief search of the archives and did not find a wishlist item 
&lt;br&gt;like this one. &amp;nbsp;It would be great if there could be a survey script.
&lt;br&gt;&lt;br&gt;The survey script would basically be a formmail script with more 
&lt;br&gt;elaborate instructions or commented-out HTML. &amp;nbsp;It must be possible to 
&lt;br&gt;have multipage surveys.
&lt;br&gt;&lt;br&gt;One way to kludge the fact that a single visitor may submit multiple 
&lt;br&gt;pages (and therefore multiple mails) is to have a &amp;quot;name&amp;quot; field at the 
&lt;br&gt;top for the person's name (or code), that is stored in a cookie and 
&lt;br&gt;automatically filled in on each subsequent page's &amp;quot;name&amp;quot; field, until 
&lt;br&gt;the last page of the survey is reached, at which time the cookie is 
&lt;br&gt;deleted. &amp;nbsp;This will means multiple mails per visitor, but at least 
&lt;br&gt;you'll be able to see which mails belong to which users.
&lt;br&gt;&lt;br&gt;I guess it could be made more sophisticated too, if the script can store 
&lt;br&gt;the information from the previous pages until the last page is reached, 
&lt;br&gt;and only send the survey results when the final submit button is 
&lt;br&gt;pressed. &amp;nbsp;Then you'll get a single e-mail instead of several.
&lt;br&gt;&lt;br&gt;The cookie can still be used, perhaps, to ensure that multiple and 
&lt;br&gt;simultaneous visitors from the same IP address are not confused with 
&lt;br&gt;each other on the server.
&lt;br&gt;&lt;br&gt;There are several free survey sites but they all offer very limited free 
&lt;br&gt;services (eg only 10 responses, or only a summary of results), or the 
&lt;br&gt;display banner adverts inappropriate for the survey.
&lt;br&gt;&lt;br&gt;The reason for multipage surveys is simple: &amp;nbsp;nothing is more annoying 
&lt;br&gt;than filling in a long form and then the browser hangs or you accidently 
&lt;br&gt;close the page. &amp;nbsp;A survey script would avoid that -- the user can stop 
&lt;br&gt;the survey at any time and continue from where he left off later.
&lt;br&gt;&lt;br&gt;Your thoughts?
&lt;br&gt;&lt;br&gt;Samuel
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=20093408&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Delurk%2C-and-wish-for-a-survey-script-%28sorry%2C-%22program%22%29-tp20093408p20093408.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19977995</id>
	<title>TFMail: MIME attachment generation</title>
	<published>2008-10-13T17:54:21Z</published>
	<updated>2008-10-13T17:54:21Z</updated>
	<author>
		<name>Phil White-6</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I have successfully used TFMail for some time now, and find that it
&lt;br&gt;fits almost all of my needs. Thank you all for that.
&lt;br&gt;&lt;br&gt;However, recently, I have come across one scenario which, although I
&lt;br&gt;had assumed would be quite possible, seems not to be so. My apologies
&lt;br&gt;if I have not RTFM - pointers would be gratefully received...
&lt;br&gt;&lt;br&gt;I have a form, the contents of which are to be emailed to me (so far,
&lt;br&gt;so standard). However, the resultant email must be multipart/mixed MIME
&lt;br&gt;encapsulated message.
&lt;br&gt;&lt;br&gt;in particular, it should end up with an attachment in the form of:
&lt;br&gt;&lt;br&gt;--foobar
&lt;br&gt;Content-Type: text/calendar; charset=ISO-8859-1; method=REQUEST
&lt;br&gt;Content-Transfer-Encoding: 7bit
&lt;br&gt;&lt;br&gt;BEGIN:VCALENDAR
&lt;br&gt;VERSION:2.0
&lt;br&gt;CALSCALE:GREGORIAN
&lt;br&gt;METHOD:REQUEST
&lt;br&gt;BEGIN:VEVENT
&lt;br&gt;DTSTART:{= date =}
&lt;br&gt;...and so on ...
&lt;br&gt;&lt;br&gt;&lt;br&gt;Is this possible with the TFMail script as-is? Alternatively, what
&lt;br&gt;degree of modification would be required to all for this?
&lt;br&gt;&lt;br&gt;Many thanks,
&lt;br&gt;&lt;br&gt;Phil.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19977995&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/TFMail%3A-MIME-attachment-generation-tp19977995p19977995.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18668487</id>
	<title>[ nms-cgi-Feature Requests-1948117 ] Add CAPTCHA?</title>
	<published>2008-06-30T12:53:01Z</published>
	<updated>2008-06-30T12:53:01Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1948117, was opened at 2008-04-21 13:26
&lt;br&gt;Message generated for change (Comment added) made by girardot
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: Interface Improvements (example)
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Nobody/Anonymous (nobody)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Add CAPTCHA?
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;Our NMS FormMail script as been getting spammed as of late. It seems having CAPTCHA or at least an OPTION for CAPTCHA would be nice. reCAPTCHA (&lt;a href=&quot;http://recaptcha.net/resources.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://recaptcha.net/resources.html&lt;/a&gt;) looks like an easy thing to add/implement. The problem is I don't know where in the NMS FormMail script to add it myself (or I would). Obviously, one of the user configurations would be for the reCAPTCHA API keys (so being an OPTION is nice).
&lt;br&gt;&lt;br&gt;If NMS FormMail is no longer being developed or if this is a feature that would NOT be added I would like to at least be contacted by someone who could help my add it to my implementation of NMS FormMail.
&lt;br&gt;&lt;br&gt;Thank you,
&lt;br&gt;Mike Michaelson
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18668487&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mike@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;Comment By: blake girardot (girardot)
&lt;br&gt;Date: 2008-06-30 15:53
&lt;br&gt;&lt;br&gt;Message:
&lt;br&gt;Logged In: YES 
&lt;br&gt;user_id=135704
&lt;br&gt;Originator: NO
&lt;br&gt;&lt;br&gt;Here is one way to add reCaptcha support, less than perfect, but it works.
&lt;br&gt;In case it doesn't post properly here is a link to it on the web displaying
&lt;br&gt;properly:
&lt;br&gt;&lt;a href=&quot;http://groups.google.com/group/recaptcha/browse_thread/thread/b4b35aa61353d485&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/recaptcha/browse_thread/thread/b4b35aa61353d485&lt;/a&gt;&lt;br&gt;&lt;br&gt;These are notes for how I added reCaptcha support to the NMS version of
&lt;br&gt;FormMail.pl (&lt;a href=&quot;http://nms-cgi.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.sourceforge.net/&lt;/a&gt;), a much better version of the
&lt;br&gt;original FormMail.pl.
&lt;br&gt;&lt;br&gt;reCaptcha is a specific implementation of the general captcha idea and
&lt;br&gt;more information about it can be found here:
&lt;br&gt;&lt;a href=&quot;http://recaptcha.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://recaptcha.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I have the fully self contained, stand alone version of NMS FormMail.pl
&lt;br&gt;installed, called the &amp;quot;compat&amp;quot; version on the sourceforge page. This
&lt;br&gt;basically means the FormMail.pl script has all the code it needs are all in
&lt;br&gt;the one file, it has embedded any other modules it might need to work
&lt;br&gt;directly in its own script. This makes it fully self contained and doesn't
&lt;br&gt;need any additional modules to work making installation simple.
&lt;br&gt;&lt;br&gt;My method installs the reCaptcha perl module in the system wide perl
&lt;br&gt;installation and then calls that perl module from the FormMail.pl script.
&lt;br&gt;&lt;br&gt;I took the example perl code from &lt;a href=&quot;http://code.google.com/p/recaptcha/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/recaptcha/&lt;/a&gt;,
&lt;br&gt;stripped out the HTML parts and stuck it in the FormMail.pl script
&lt;br&gt;following the conventions used in that script as best I could.
&lt;br&gt;&lt;br&gt;I am not a perl expert so I can't promise this is the best way to
&lt;br&gt;accomplish this goal, but it does meet my needs just fine. I am all for
&lt;br&gt;someone who really knows perl doing it the right way but people have been
&lt;br&gt;asking around for a while and I haven't seen any other solutions on the
&lt;br&gt;internet yet so I thought I would take a stab at it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;1. Install the reCaptcha perl module, at the time of writing this the
&lt;br&gt;latest version was 0.92
&lt;br&gt;&lt;a href=&quot;http://search.cpan.org/~andya/Captcha-reCAPTCHA/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://search.cpan.org/~andya/Captcha-reCAPTCHA/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Directly edit the FormMail.pl script, add the two single lines and the two
&lt;br&gt;following functions:
&lt;br&gt;&lt;br&gt;2. Line 1034 is blank, change it to:
&lt;br&gt;use Captcha::reCAPTCHA;
&lt;br&gt;&lt;br&gt;3. Line 2094 is blank, change it to:
&lt;br&gt;&amp;nbsp; $self-&amp;gt;check_recaptcha or return;
&lt;br&gt;&lt;br&gt;4. Insert the following two functions into the FormMail.pl script starting
&lt;br&gt;at line 2104. Replace YOUR_PRIVATE_KEY_HERE with your actual private key
&lt;br&gt;from the reCaptcha folks:
&lt;br&gt;&lt;br&gt;# START additions to support reCaptcha verification
&lt;br&gt;&lt;br&gt;=item check_recaptcha ( )
&lt;br&gt;&lt;br&gt;Uses the reCaptcha perl module to CHECK the user entered words.
&lt;br&gt;&lt;br&gt;=cut
&lt;br&gt;&lt;br&gt;sub check_recaptcha {
&lt;br&gt;&amp;nbsp; my ($self) = @_;
&lt;br&gt;&amp;nbsp; use constant PRIVATE_KEY =&amp;gt; 'YOUR_PRIVATE_KEY_HERE';
&lt;br&gt;&amp;nbsp; my $c = Captcha::reCAPTCHA-&amp;gt;new;
&lt;br&gt;&amp;nbsp; if ( $self-&amp;gt;{Form}{recaptcha_response_field} ) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $result = $c-&amp;gt;check_answer(
&lt;br&gt;&amp;nbsp; &amp;nbsp; PRIVATE_KEY, $ENV{'REMOTE_ADDR'},
&lt;br&gt;&amp;nbsp; &amp;nbsp; $self-&amp;gt;{Form}{recaptcha_challenge_field},
&lt;br&gt;&amp;nbsp; &amp;nbsp; $self-&amp;gt;{Form}{recaptcha_response_field}
&lt;br&gt;&amp;nbsp; &amp;nbsp; );
&lt;br&gt;&amp;nbsp; &amp;nbsp; if ( $result-&amp;gt;{is_valid} ) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; return 1;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $self-&amp;gt;bad_recaptcha_error_page;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; return 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp; else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; $self-&amp;gt;bad_recaptcha_error_page;
&lt;br&gt;&amp;nbsp; &amp;nbsp; return 0;
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;=item bad_recaptcha_error_page ()
&lt;br&gt;&lt;br&gt;Outputs the error page for a bad or missing reCaptcha user entry.
&lt;br&gt;&lt;br&gt;=cut
&lt;br&gt;&lt;br&gt;sub bad_recaptcha_error_page {
&lt;br&gt;&amp;nbsp; my ($self) = @_;
&lt;br&gt;&lt;br&gt;&amp;nbsp; my $errhtml = &amp;lt;&amp;lt;END;
&lt;br&gt;&amp;lt;p&amp;gt;
&lt;br&gt;&amp;nbsp; The validation word response was missing or not correct. 
&lt;br&gt;&amp;nbsp; All test phrases are two words long so your entry should
&lt;br&gt;&amp;nbsp; be two words as well. The presented words are generated
&lt;br&gt;&amp;nbsp; automatically from a scanned book and are often hard to read.
&lt;br&gt;&amp;nbsp; Please use the back button in your browser to return to the form
&lt;br&gt;&amp;nbsp; and you will automatically have two new words. There is a small
&lt;br&gt;&amp;nbsp; refresh icon next to the response field that will generate two
&lt;br&gt;&amp;nbsp; new words if you can not read the two words presented.
&lt;br&gt;&amp;lt;/p&amp;gt;
&lt;br&gt;END
&lt;br&gt;&lt;br&gt;&amp;nbsp; $self-&amp;gt;error_page( 'Error: Incorrect or Missing Challenge Words',
&lt;br&gt;$errhtml );
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;# END additions to support reCaptcha verification
&lt;br&gt;&lt;br&gt;5. Insert the following javascript in your form html to generate the
&lt;br&gt;challenge words box from reCaptcha. I use a static HTML form to feed my
&lt;br&gt;FormMail.pl script so I use the javascript code from reCaptcha to generate
&lt;br&gt;the challenge words. This javascript code can be found here
&lt;br&gt;&lt;a href=&quot;http://recaptcha.net/apidocs/captcha/client.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://recaptcha.net/apidocs/captcha/client.html&lt;/a&gt;&amp;nbsp;since it might not display
&lt;br&gt;properly below depending on where you are reading these notes.
&lt;br&gt;&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp;src=&amp;quot;&lt;a href=&quot;http://api.recaptcha.net/challenge?k=&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://api.recaptcha.net/challenge?k=&lt;/a&gt;&amp;lt;your_public_key&amp;gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;noscript&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;iframe src=&amp;quot;&lt;a href=&quot;http://api.recaptcha.net/noscript?k=&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://api.recaptcha.net/noscript?k=&lt;/a&gt;&amp;lt;your_public_key&amp;gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;height=&amp;quot;300&amp;quot; width=&amp;quot;500&amp;quot; frameborder=&amp;quot;0&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;br&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;textarea name=&amp;quot;recaptcha_challenge_field&amp;quot; rows=&amp;quot;3&amp;quot; cols=&amp;quot;40&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/textarea&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;recaptcha_response_field&amp;quot; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;value=&amp;quot;manual_challenge&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/noscript&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;That should about do it really, those are all the changes I made to my set
&lt;br&gt;up to get reCaptcha support in NMS FormMail.pl.
&lt;br&gt;&lt;br&gt;Best wishes,
&lt;br&gt;Blake Girardot
&lt;br&gt;bgirardot funnyatsymbol gmail com
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18668487&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Feature-Requests-1948117---Add-CAPTCHA--tp18668487p18668487.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18081958</id>
	<title>Check out &quot;Suggestions and Feedback&quot; on koottam...</title>
	<published>2008-06-23T18:35:43Z</published>
	<updated>2008-06-23T18:35:43Z</updated>
	<author>
		<name>“Punarjani”(Re-Birth)CHARITABLE TRUST FOR DE-ADDICTION &amp; REHABILITATION</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
	&lt;title&gt;Network Email&lt;/title&gt;
&lt;/head&gt;
&lt;body style=&quot;padding:0; margin:16px; font-size:12px; font-family:'lucida grande', tahoma, helvetica, arial, sans-serif;&quot;&gt;
&lt;table width=&quot;98%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;
	&lt;tr&gt;
		&lt;td bgcolor=&quot;#FFFFFF&quot; width=&quot;100%&quot;&gt;
			&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; width=&quot;600&quot;&gt;
	&lt;tr&gt;
		&lt;td align=&quot;left&quot; bgcolor=&quot;#333333&quot; height=&quot;44&quot; valign=&quot;middle&quot; style=&quot;padding-left:12px; color:#FFFFFF;&quot;&gt;
			&lt;div style=&quot;font-weight:bold; font-size:18px;&quot;&gt;koottam&lt;/div&gt;
			&lt;div style=&quot;font-size:12px;&quot;&gt;മലയാളി കൂട്ടം&lt;/div&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
			&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; width=&quot;600&quot;&gt;
				&lt;tr&gt;
					&lt;td width=&quot;*&quot; style=&quot;font-size:12px;padding-top:8px&quot; valign=&quot;top&quot;&gt;
						&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;100%&quot;&gt;
							&lt;tr&gt;
																&lt;td width=&quot;96&quot; valign=&quot;top&quot; style=&quot;padding-right:16px;&quot;&gt;
										&lt;a href=&quot;http://www.koottam.com/xn/detail/u_15zv9h2slxc3x&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img height=&quot;96&quot; width=&quot;96&quot; border=&quot;0&quot; alt=&quot;&amp;ldquo;Punarjani&amp;rdquo;...&quot; src=&quot;http://api.ning.com/files/RFc2APP5S3dPdVF6eW2JnUXx-zQdxVdHjNEKJNoiVjpc8mrCR4nV3AlITpeh-*kSuOOmGbs8jziyAblOCyuj30VXFlSJ8PcZ/72799012.gif?width=96&amp;amp;height=96&amp;amp;crop=1%3A1&amp;amp;xn_auth=no&quot;&gt;&lt;/a&gt;
	&lt;div style=&quot;padding-bottom:6px;text-align:center;font-size:12px&quot;&gt;&lt;a href=&quot;http://www.koottam.com/xn/detail/u_15zv9h2slxc3x&quot; style=&quot;text-decoration:none&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&amp;ldquo;Punarjani&amp;rdquo;(R-&lt;br /&gt;
e-Birt...&lt;/a&gt;&lt;/div&gt;
								&lt;/td&gt;
																&lt;td width=&quot;*&quot; valign=&quot;top&quot; style=&quot;font-size:12px&quot;&gt;
									&lt;div style=&quot;font-size:14px; font-weight:bold; padding-bottom:8px&quot;&gt;&amp;ldquo;Punarjani&amp;rdquo;(Re-Birth)CHARITABLE TRUST FOR DE-ADDICTION &amp;amp; REHABILITATION wants you to check out the discussion 'Suggestions and Feedback'...&lt;/div&gt;
									&lt;div style=&quot;border-bottom:1px solid #aaa; height:8px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;height:8px&quot;&gt;&amp;nbsp;&lt;/div&gt;
									&lt;div style=&quot;font-weight:bold;font-size:12px&quot;&gt;&amp;ldquo;Punarjani&amp;rdquo;(Re-Birth)CHARITABLE TRUST FOR DE-ADDICTION &amp;amp; REHABILITATION says...&lt;/div&gt;
									&lt;br /&gt;
									&amp;ldquo;Punarjani&amp;rdquo;(Re-Birth)&lt;br /&gt;
CHARITABLE TRUST FOR DE-ADDICTION &amp;amp; REHABILITATION&lt;br /&gt;
				,&lt;br /&gt;
&lt;br /&gt;
E-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18081958&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;punarjanipoomala@...&lt;/a&gt;&lt;br /&gt;
                      www.punarjani.org&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
				Ph.0487-2201332,&lt;br /&gt;
									&lt;br /&gt;
									        								&lt;div style=&quot;font-weight:bold;&quot;&gt;Discussion posted by &lt;a href=&quot;http://www.koottam.com/xn/detail/u_8ys0c5v84hot&quot; style=&quot;text-decoration:none;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Koottam.Admin&lt;/a&gt;:&lt;/div&gt;
        								&lt;br /&gt;
										Dear visitor,
Please use this forum to give us suggestions and feedback on our koottam. Also post any queries you may have.&lt;br /&gt;
            							&lt;br /&gt;&lt;div style=&quot;font-weight:bold;&quot;&gt;Discussion link:&lt;/div&gt;
            							&lt;a href=&quot;http://www.koottam.com/forum/topic/show?id=784240%3ATopic%3A57460&amp;amp;xgs=1&amp;amp;xgi=7T28c4Y&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.koottam.com/forum/topic/show?id=784240%3ATopic%3A57460&amp;amp;xgs=1&amp;amp;xgi=7T28c4Y&lt;/a&gt;&lt;br /&gt;
																	&lt;/td&gt;
							&lt;/tr&gt;
						&lt;/table&gt;
						&lt;div style=&quot;border-bottom:1px solid #aaa; height:8px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;height:8px&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot;&gt;
	&lt;tr&gt;
				&lt;td style=&quot;text-align:center; padding-right:12px&quot; width=&quot;96&quot; valign=&quot;top&quot;&gt;
			&lt;a href=&quot;http://www.koottam.com/forum/topic/show?id=784240%3ATopic%3A57460&amp;amp;xgs=1&amp;amp;xgi=7T28c4Y&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img height=&quot;96&quot; width=&quot;96&quot; border=&quot;0&quot; alt=&quot;koottam&quot; src=&quot;http://api.ning.com/icons/appatar/784240?default=784240&amp;amp;width=96&amp;amp;height=96&quot;&gt;&lt;/a&gt;
		&lt;/td&gt;
				&lt;td valign=&quot;top&quot; width=&quot;*&quot;&gt;
			&lt;div style=&quot;font-weight:bold;font-size:12px&quot;&gt;About koottam...&lt;/div&gt;
			&lt;br /&gt;
						&lt;div style=&quot;font-size:12px&quot;&gt;A hangout place for world malayalees...to make friends, share photos and videos, write blogs, participate in debates, forums and polls on different issues. Malayalee&amp;#039;s first social networking site. Join us and share your friendship!&lt;/div&gt;
			&lt;br /&gt;
												&lt;table width=&quot;100%&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
						&lt;tr&gt;
						&lt;td width=&quot;35%&quot; style=&quot;font-size:12px&quot;&gt;4079 members&lt;/td&gt;&lt;td width=&quot;*&quot; style=&quot;font-size:12px&quot;&gt;4772 photos&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width=&quot;35%&quot; style=&quot;font-size:12px&quot;&gt;786 music tracks&lt;/td&gt;&lt;td width=&quot;*&quot; style=&quot;font-size:12px&quot;&gt;1017 videos&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width=&quot;35%&quot; style=&quot;font-size:12px&quot;&gt;332 discussions&lt;/td&gt;&lt;td width=&quot;*&quot; style=&quot;font-size:12px&quot;&gt;8 events&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td width=&quot;35%&quot; style=&quot;font-size:12px&quot;&gt;327 blog posts&lt;/td&gt;						&lt;/tr&gt;
					&lt;/table&gt;
						&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
						&lt;div style=&quot;border-bottom:1px solid #aaa; height:8px;&quot;&gt;&amp;nbsp;&lt;/div&gt;
&lt;div style=&quot;height:8px&quot;&gt;&amp;nbsp;&lt;/div&gt;
						&lt;div style=&quot;color:#777777; font-size:11px;&quot;&gt;
	To control which emails you receive on koottam, go to:	&lt;a href=&quot;http://www.koottam.com/profiles/profile/emailSettings&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.koottam.com/profiles/profile/emailSettings&lt;/a&gt;
&lt;/div&gt;
					&lt;/td&gt;
				&lt;/tr&gt;
			&lt;/table&gt;
		&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;
&lt;img src=&quot;http://www.koottam.com/xn_resources/widgets/index/gfx/spacer.gif&quot; width=&quot;1&quot; height=&quot;1&quot; alt=&quot;&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18081958&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Check-out-%22Suggestions-and-Feedback%22-on-koottam...-tp18081958p18081958.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16925133</id>
	<title>[ nms-cgi-Feature Requests-1948117 ] Add CAPTCHA?</title>
	<published>2008-04-21T10:26:16Z</published>
	<updated>2008-04-21T10:26:16Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1948117, was opened at 2008-04-21 10:26
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: Interface Improvements (example)
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Nobody/Anonymous (nobody)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Add CAPTCHA?
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;Our NMS FormMail script as been getting spammed as of late. It seems having CAPTCHA or at least an OPTION for CAPTCHA would be nice. reCAPTCHA (&lt;a href=&quot;http://recaptcha.net/resources.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://recaptcha.net/resources.html&lt;/a&gt;) looks like an easy thing to add/implement. The problem is I don't know where in the NMS FormMail script to add it myself (or I would). Obviously, one of the user configurations would be for the reCAPTCHA API keys (so being an OPTION is nice).
&lt;br&gt;&lt;br&gt;If NMS FormMail is no longer being developed or if this is a feature that would NOT be added I would like to at least be contacted by someone who could help my add it to my implementation of NMS FormMail.
&lt;br&gt;&lt;br&gt;Thank you,
&lt;br&gt;Mike Michaelson
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16925133&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mike@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1948117&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
&lt;br&gt;Don't miss this year's exciting event. There's still time to save $100. 
&lt;br&gt;Use priority code J8TL2D2. 
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16925133&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Feature-Requests-1948117---Add-CAPTCHA--tp16925133p16925133.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15789973</id>
	<title>[ nms-cgi-Patches-1904294 ] Patch for adding support for writing form submissions to CSV</title>
	<published>2008-02-28T15:32:27Z</published>
	<updated>2008-02-28T15:32:27Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Patches item #1904294, was opened at 2008-02-28 16:40
&lt;br&gt;Message generated for change (Comment added) made by kona
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: William McKee (kona)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Patch for adding support for writing form submissions to CSV
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I needed to be able to write form submissions to a CSV file for backup and data manipulation. The following patch does the job.
&lt;br&gt;&lt;br&gt;NOTES:
&lt;br&gt;&lt;br&gt;1. It requires Text::CSV be availble
&lt;br&gt;2. A new config parameter called 'csv_file' is expected with the path to write the file to
&lt;br&gt;3. A header line is only output if the file exists and size is 0
&lt;br&gt;4. If you change your form, you should reset your csv file. No warnings are in place to let you know that changes are happening.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&amp;gt;Comment By: William McKee (kona)
&lt;br&gt;Date: 2008-02-28 18:32
&lt;br&gt;&lt;br&gt;Message:
&lt;br&gt;Logged In: YES 
&lt;br&gt;user_id=224605
&lt;br&gt;Originator: YES
&lt;br&gt;&lt;br&gt;In addition, if you want fields like 'email' to come through into the csv
&lt;br&gt;file, you need to add include_config_NAME. Here's an example of a
&lt;br&gt;%more_config settings for setting the csv_file and include:
&lt;br&gt;&lt;br&gt;%more_config = (
&lt;br&gt;&amp;nbsp; &amp;nbsp; 'csv_file' =&amp;gt; '/home/garlicgold/public_html/cgi/sample_form_db.csv',
&lt;br&gt;&amp;nbsp; &amp;nbsp; 'include_config_email' =&amp;gt; 1,
&lt;br&gt;);
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=15789973&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Patches-1904294---Patch-for-adding-support-for-writing-form-submissions-to-CSV-tp15789973p15789973.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15789972</id>
	<title>[ nms-cgi-Patches-1904294 ] Patch for adding support for writing form submissions to CSV</title>
	<published>2008-02-28T13:40:24Z</published>
	<updated>2008-02-28T13:40:24Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Patches item #1904294, was opened at 2008-02-28 16:40
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: William McKee (kona)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Patch for adding support for writing form submissions to CSV
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I needed to be able to write form submissions to a CSV file for backup and data manipulation. The following patch does the job.
&lt;br&gt;&lt;br&gt;NOTES:
&lt;br&gt;&lt;br&gt;1. It requires Text::CSV be availble
&lt;br&gt;2. A new config parameter called 'csv_file' is expected with the path to write the file to
&lt;br&gt;3. A header line is only output if the file exists and size is 0
&lt;br&gt;4. If you change your form, you should reset your csv file. No warnings are in place to let you know that changes are happening.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425771&amp;aid=1904294&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=15789972&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Patches-1904294---Patch-for-adding-support-for-writing-form-submissions-to-CSV-tp15789972p15789972.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15789971</id>
	<title>[ nms-cgi-Bugs-1902325 ] Formmail bug</title>
	<published>2008-02-26T08:39:37Z</published>
	<updated>2008-02-26T08:39:37Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Bugs item #1902325, was opened at 2008-02-26 08:39
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425769&amp;aid=1902325&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425769&amp;aid=1902325&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Nobody/Anonymous (nobody)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Formmail bug
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;NMS FormMail Version 3.14c1 has a bug in which the script errors &amp;quot;The HTML form fails to specify the POST method&amp;quot; on submit. 
&lt;br&gt;&lt;br&gt;The error is on line 2235: if ($method ne 'POST')
&lt;br&gt;The 'ne' operator is wrong and should be 'eq'.
&lt;br&gt;&lt;br&gt;I ran into this when my web host switched to a new platform and the NMS script no longer worked.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425769&amp;aid=1902325&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425769&amp;aid=1902325&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2008.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=15789971&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Bugs-1902325---Formmail-bug-tp15789971p15789971.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-14379909</id>
	<title>[ nms-cgi-Support Requests-1843724 ] NMS FormMail Version 3.14c1 - 'bad referer'</title>
	<published>2007-12-03T15:25:07Z</published>
	<updated>2007-12-03T15:25:07Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Support Requests item #1843724, was opened at 2007-12-03 18:25
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1843724&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1843724&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: B Sanders (barbisanders)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: NMS FormMail Version 3.14c1 - 'bad referer'
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;This is the only part of the original *.pl file I've altered:
&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;= 5;
&lt;br&gt;&amp;nbsp; $mailprog &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= '/usr/lib/sendmail -oi -t';
&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=14379909&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barbisanders@...&lt;/a&gt;';
&lt;br&gt;&amp;nbsp; @referers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= qw(www.actionmechanics.com);
&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=14379909&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;barbisanders@...&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 %H:%M:%S';
&lt;br&gt;&amp;nbsp; $style &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; = '/MMC/css/MMC_general.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;= 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;&lt;br&gt;&lt;br&gt;It works fine on most computers from a variety of home and office locations, but one particular doctor's office is getting the 'bad referer' error, even though I have the $allow_empty_ref set to 1. Any suggestions?
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1843724&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1843724&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;SF.Net email is sponsored by:
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services
&lt;br&gt;for just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=14379909&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Support-Requests-1843724---NMS-FormMail-Version-3.14c1---%27bad-referer%27-tp14379909p14379909.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12229631</id>
	<title>header intact</title>
	<published>2007-08-19T21:41:06Z</published>
	<updated>2007-08-19T21:41:06Z</updated>
	<author>
		<name>mukesh singh-2</name>
	</author>
	<content type="html">
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Splunk Inc.
&lt;br&gt;Still grepping through log files to find problems? &amp;nbsp;Stop.
&lt;br&gt;Now Search log events and configuration files using AJAX and a browser.
&lt;br&gt;Download your FREE copy of Splunk now &amp;gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://get.splunk.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://get.splunk.com/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12229631&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/header-intact-tp12229631p12229631.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-11695978</id>
	<title>[ nms-cgi-Support Requests-1752164 ] Redirect Issues</title>
	<published>2007-07-11T13:17:03Z</published>
	<updated>2007-07-11T13:17:03Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Support Requests item #1752164, was opened at 2007-07-11 14:17
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1752164&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1752164&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: 4WardMotion (tyy)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Redirect Issues
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I am having a problem with the formmail.pl script and getting my contact form to redirect to my thank you page and not to the default page of the script. Here are the changes that I have made to the script and my html code:
&lt;br&gt;&lt;br&gt;BEGIN
&lt;br&gt;{
&lt;br&gt;$DEBUGGING = 1;
&lt;br&gt;$emulate_matts_code= 0;
&lt;br&gt;$secure = 1;
&lt;br&gt;$allow_empty_ref = 1;
&lt;br&gt;$max_recipients = 2;
&lt;br&gt;$mailprog = '/usr/sbin/sendmail -oi -t -f mail@cre...';
&lt;br&gt;$postmaster = '';
&lt;br&gt;@referers = qw(www.cre...);
&lt;br&gt;@allow_mail_to = qw(mail@cre...);
&lt;br&gt;@recipients = ();
&lt;br&gt;%recipient_alias = ();
&lt;br&gt;@valid_ENV = qw(REMOTE_HOST REMOTE_ADDR REMOTE_USER HTTP_USER_AGENT);
&lt;br&gt;$locale = '';
&lt;br&gt;$charset = 'iso-8859-1';
&lt;br&gt;$date_fmt = '%A, %B %d, %Y at %H:%M:%S';
&lt;br&gt;$style = '/css/nms.css';
&lt;br&gt;$no_content = 0;
&lt;br&gt;$double_spacing = 1;
&lt;br&gt;$wrap_text = 0;
&lt;br&gt;$wrap_style = 1;
&lt;br&gt;$address_style = 0;
&lt;br&gt;$send_confirmation_mail = 0;
&lt;br&gt;$confirmation_text = &amp;lt;&amp;lt;'END_OF_CONFIRMATION';
&lt;br&gt;From: mail@cre...
&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;HTML Code:
&lt;br&gt;&lt;br&gt;&amp;lt;input name=&amp;quot;redirect&amp;quot; type=&amp;quot;hidden&amp;quot; id=&amp;quot;redirect&amp;quot; value=&amp;quot;&lt;a href=&quot;http://www.cre....com/thank_you.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cre....com/thank_you.html&lt;/a&gt;&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;Thank you for your help.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1752164&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1752164&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by: Microsoft
&lt;br&gt;Defy all challenges. Microsoft(R) Visual Studio 2005.
&lt;br&gt;&lt;a href=&quot;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=11695978&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Support-Requests-1752164---Redirect-Issues-tp11695978p11695978.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-10968274</id>
	<title>Re: Guestbook/list active?</title>
	<published>2007-06-05T06:13:15Z</published>
	<updated>2007-06-05T06:13:15Z</updated>
	<author>
		<name>Dave Cross</name>
	</author>
	<content type="html">Tuc at T-B-O-H.NET wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	Is this list active any? I didn't see any replies to my &amp;quot;Guestbook&amp;quot;
&lt;br&gt;&amp;gt; post, but SourceForge claims 3 &amp;quot;Thread Posts&amp;quot;. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	Does anyone have anything on my work and/or issues?
&lt;br&gt;&lt;br&gt;Tuc,
&lt;br&gt;&lt;br&gt;The development list does seem very quiet. It looks like no-one has time 
&lt;br&gt;to work on improvements to the nms programs any more.
&lt;br&gt;&lt;br&gt;We'll still make security patches, but until we get some more 
&lt;br&gt;enthusiastic developers, I can't see any new features being added.
&lt;br&gt;&lt;br&gt;Dave...
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by DB2 Express
&lt;br&gt;Download DB2 Express C - the FREE version of DB2 express and take
&lt;br&gt;control of your XML. No limits. Just data. Click to get it now.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/powerbar/db2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/powerbar/db2/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=10968274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-list-active--tp10883435p10968274.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-10883435</id>
	<title>Guestbook/list active?</title>
	<published>2007-05-30T15:56:22Z</published>
	<updated>2007-05-30T15:56:22Z</updated>
	<author>
		<name>Tuc at T-B-O-H.NET</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Is this list active any? I didn't see any replies to my &amp;quot;Guestbook&amp;quot;
&lt;br&gt;post, but SourceForge claims 3 &amp;quot;Thread Posts&amp;quot;. 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Does anyone have anything on my work and/or issues?
&lt;br&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; Thanks, Tuc
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by DB2 Express
&lt;br&gt;Download DB2 Express C - the FREE version of DB2 express and take
&lt;br&gt;control of your XML. No limits. Just data. Click to get it now.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/powerbar/db2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/powerbar/db2/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=10883435&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-list-active--tp10883435p10883435.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-10773566</id>
	<title>Guestbook</title>
	<published>2007-05-23T15:51:59Z</published>
	<updated>2007-05-23T15:51:59Z</updated>
	<author>
		<name>Tuc at T-B-O-H.NET</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; As with most people, my guestbook is being used for spam. Even
&lt;br&gt;though its &amp;quot;hidden until approved&amp;quot;, search engines still pick it up.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Today I got annoyed at it, so I looked to start adding Captcha to
&lt;br&gt;it. (Sorry, I just got distracted. Even though I pulled the page, they
&lt;br&gt;are submitting to the cgi directly...So now THATS chmod 000). 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I first started by changing the reference on Guestbook.html from
&lt;br&gt;&amp;quot;AddGuest.html&amp;quot; to &amp;quot;/cgi-bin/AddGuest.cgi&amp;quot;.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I then copied my AddGuest.html to AddGuesttemplate.html .
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; After the Comments section, I added :
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;INPUT TYPE=hidden name=crypt value=&amp;quot;%CRYPT%&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Please enter the characters in the image below: &amp;lt;INPUT TYPE=text name=co
&lt;br&gt;de&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;BR&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;IMG SRC=&amp;quot;%CAPTCHASRC%&amp;quot;&amp;gt;&amp;lt;BR&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I then created AddGuest.cgi as :
&lt;br&gt;&lt;br&gt;#!/usr/bin/perl
&lt;br&gt;&lt;br&gt;use Authen::Captcha;
&lt;br&gt;&lt;br&gt;my $output_dir = &amp;quot;/my/html/captcha&amp;quot;;
&lt;br&gt;my $www_output_dir = &amp;quot;/captcha&amp;quot;;
&lt;br&gt;my $db_dir = &amp;quot;/my/cgi-bin/captcha.db&amp;quot;;
&lt;br&gt;my $num_of_characters = 7;
&lt;br&gt;&lt;br&gt;my $captcha = Authen::Captcha-&amp;gt;new(
&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; output_folder &amp;nbsp; &amp;nbsp; =&amp;gt; $output_dir,
&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; data_folder &amp;nbsp; &amp;nbsp; &amp;nbsp; =&amp;gt; $db_dir
&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; );
&lt;br&gt;&lt;br&gt;my $md5sum = $captcha-&amp;gt;generate_code($num_of_characters);
&lt;br&gt;&lt;br&gt;undef $file;
&lt;br&gt;open (IN,&amp;quot;&amp;lt;/my/html/AddGuesttemplate.html&amp;quot;);
&lt;br&gt;while (&amp;lt;IN&amp;gt;)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; $file .= $_;
&lt;br&gt;}
&lt;br&gt;close (IN);
&lt;br&gt;&lt;br&gt;$file =~ s/%CRYPT%/$md5sum/g;
&lt;br&gt;$file =~ s/%CAPTCHASRC%/$www_output_dir\/$md5sum.png/g;
&lt;br&gt;&lt;br&gt;print &amp;quot;Content-Type: text/html; charset=iso-8859-1\n\n&amp;quot;;
&lt;br&gt;print $file;
&lt;br&gt;&lt;br&gt;exit;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; There are alot of changes to guestbook.pl...
&lt;br&gt;&lt;br&gt;1) add $captcha to the &amp;quot;use vars qw(&amp;quot;
&lt;br&gt;2) put a $captcha=1; under the $line_breaks=1;
&lt;br&gt;3) Add 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; if ($captcha)
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; require Authen::Captcha;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; import Authen::Captcha;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; under the &amp;quot;if ($mailprog =~ /SMTP:/i )&amp;quot;
&lt;br&gt;&lt;br&gt;4) After the part where it foreach's the input_names to strip_nonprintable
&lt;br&gt;I added :
&lt;br&gt;&lt;br&gt;if ($captcha)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $output_dir = &amp;quot;/usr/home/tucobx/html/captcha&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $www_output_dir = &amp;quot;/captcha&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $db_dir = &amp;quot;/usr/home/tucobx/cgi-bin/captcha.db&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; my $num_of_characters = 7;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; my $captcha = Authen::Captcha-&amp;gt;new(
&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; output_folder &amp;nbsp; &amp;nbsp; =&amp;gt; $output_dir,
&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; data_folder &amp;nbsp; &amp;nbsp; &amp;nbsp; =&amp;gt; $db_dir
&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; );
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; if ($inputs{'code'} &amp;&amp; $inputs{'crypt'})
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; else
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Well, the reason there isn't anything in there yet is I did a
&lt;br&gt;quick test. I got my captcha out fine, and when I hit SUBMIT, I realized
&lt;br&gt;there were parts of the code I never knew ran. It ends up that there are
&lt;br&gt;inputs for the fields built right into the CGI. At this point, I've stopped.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I really don't know what to do at this point. Personally, I like
&lt;br&gt;the nice pretty fancy page I made previously. The starkness of the stuff
&lt;br&gt;in form_error bothers me alot. 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Has any thought be given to another re-write/version of this? 
&lt;br&gt;What I personally would love to see is that you allow the user to have a
&lt;br&gt;template like mine, but maybe even have a bigger replace of 
&lt;br&gt;%GUESTBOOK_CODE_HERE% where it inserts the input chunk area and can include
&lt;br&gt;the captcha if necessary, so that when there is an error, just suck the
&lt;br&gt;template back in, and spit all the error info/etc into its midsection.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sorry for such a long first post....
&lt;br&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;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Tuc
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.net email is sponsored by DB2 Express
&lt;br&gt;Download DB2 Express C - the FREE version of DB2 express and take
&lt;br&gt;control of your XML. No limits. Just data. Click to get it now.
&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/powerbar/db2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/powerbar/db2/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=10773566&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Guestbook-tp10773566p10773566.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9958622</id>
	<title>(no subject)</title>
	<published>2007-04-12T06:39:15Z</published>
	<updated>2007-04-12T06:39:15Z</updated>
	<author>
		<name>Romain Miller</name>
	</author>
	<content type="html">my email address is &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9958622&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;romainm@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9958622&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28no-subject%29-tp9958622p9958622.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9863347</id>
	<title>How bout them apples?</title>
	<published>2007-04-05T14:15:51Z</published>
	<updated>2007-04-05T14:15:51Z</updated>
	<author>
		<name>David Winn</name>
	</author>
	<content type="html">yo, is Jules on this list?
&lt;br&gt;&lt;br&gt;daas. Helios.
&lt;br&gt;&lt;br&gt;find me jules.
&lt;br&gt;signing off.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9863347&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-bout-them-apples--tp9863347p9863347.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9682230</id>
	<title>NMStreq idea: configuration defaults file</title>
	<published>2007-03-26T15:35:25Z</published>
	<updated>2007-03-26T15:35:25Z</updated>
	<author>
		<name>David Cohen-3</name>
	</author>
	<content type="html">I modified my copy of NMStreq.pm to optionally read a second configuration file of default values. &amp;nbsp;It makes maintaining many TFMail configuration files easier.
&lt;br&gt;&lt;br&gt;In each primary/_config configuration file that I want to use defaults for settings I didn't specify, I set &amp;quot;defaults&amp;quot; to a filename (without extension) of a configuration file containing default values.
&lt;br&gt;&lt;br&gt;I added the following 9 lines in sub new, after the primary configuration file is read, and before CGI parameters are loaded:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;my $cfg_name2 = $self-&amp;gt;config('defaults');
&lt;br&gt;&amp;nbsp; &amp;nbsp;if ($cfg_name2)
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;my $config2 = $self-&amp;gt;_read_config_file($cfg_name2);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;while ( my($key, $val) = each %$config2 )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $self-&amp;gt;{r}{config}{$key} = $val unless exists $self-&amp;gt;{r}{config}{$key};
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;I am not a Perl expert, so I assume there are better code and methods to fulfill my objective. &amp;nbsp;For example, loading defaults for keys already set could be avoided by modifying sub _read_config_file. &amp;nbsp;That would also remove a loop and reduce memory use and code needed. &amp;nbsp;But, I avoided modifying existing code.
&lt;br&gt;&lt;br&gt;I joined this email list yesterday.
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9682230&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/NMStreq-idea%3A-configuration-defaults-file-tp9682230p9682230.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9539737</id>
	<title>[Fwd: [Nms-cgi-support] NMS Formmail NMS Formmail 3.14c1 Being Spammed]</title>
	<published>2007-03-18T09:36:47Z</published>
	<updated>2007-03-18T09:36:47Z</updated>
	<author>
		<name>Dave Cross</name>
	</author>
	<content type="html">&lt;br&gt;This request came in to the nms support list a couple of days ago. It 
&lt;br&gt;seems like a reasonable enough request and I wondered if anyone on the 
&lt;br&gt;devel list fancied spending an hour or two investigating how we might 
&lt;br&gt;implement it.
&lt;br&gt;&lt;br&gt;If you want a commit bit on the nms cvs repository just drop me an email 
&lt;br&gt;or, alternatively, just send me a patch.
&lt;br&gt;&lt;br&gt;Or perhaps the project is a dead as this user seems to think it is :(
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Dave...
&lt;br&gt;&lt;br&gt;-------- Original Message --------
&lt;br&gt;Subject: [Nms-cgi-support] NMS Formmail NMS Formmail 3.14c1 Being Spammed
&lt;br&gt;Date: Fri, 16 Mar 2007 15:15:08 -0700 (PDT)
&lt;br&gt;From: George25 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9539737&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gbaxley@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9539737&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nms-cgi-support@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;I doubt if this posting will receive a reply but I am putting it up on the
&lt;br&gt;outside hope it will open a discussion and perhaps a resolution. As
&lt;br&gt;mentioned over and over in this forum, the NMS Formmail 3.14c1 script is
&lt;br&gt;being attacked and spam sent to the email address(es) designated in the
&lt;br&gt;script. &amp;nbsp;Apparently this is being done by mindless spam bots that have
&lt;br&gt;nothing better to do than bombard us with urls hopping we will click on
&lt;br&gt;them. &amp;nbsp;Do a Google search like &amp;quot;nms formmail being spammed&amp;quot; and see the
&lt;br&gt;level of frustration. &amp;nbsp;I understand that further development of the the NMS
&lt;br&gt;Formmail 3.14c1 script is apparently dead or abandoned. &amp;nbsp;Perhaps that could
&lt;br&gt;be reconsidered. &amp;nbsp;Just a fix to allow the user to reject submissions with
&lt;br&gt;URLs in them or limit the length of submissions could be considered. &amp;nbsp;It
&lt;br&gt;would mean much to those of us who use the form and find it most beneficial
&lt;br&gt;but don't like wading through the buckets of spam that are being dumped on
&lt;br&gt;us by the bots. &amp;nbsp;I have looked over the TFMail and it seems like a rather
&lt;br&gt;complex script to install and I suspect it would hit by the &amp;nbsp;bots just like
&lt;br&gt;NMS Formmail 3.14c1.
&lt;br&gt;-- 
&lt;br&gt;View this message in context: 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/NMS-Formmail-NMS-Formmail-3.14c1-Being-Spammed-tf3417132.html#a9523467&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/NMS-Formmail-NMS-Formmail-3.14c1-Being-Spammed-tf3417132.html#a9523467&lt;/a&gt;&lt;br&gt;Sent from the nms-cgi-support mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&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;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9539737&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Fwd%3A--Nms-cgi-support--NMS-Formmail-NMS-Formmail-3.14c1-Being-Spammed--tp9539737p9539737.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9539731</id>
	<title>Re: formmail newbie</title>
	<published>2007-03-11T20:08:16Z</published>
	<updated>2007-03-11T20:08:16Z</updated>
	<author>
		<name>Todd Alan Smith-2</name>
	</author>
	<content type="html">On 3/11/07, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9539731&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;greenglitter485@...&lt;/a&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9539731&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;greenglitter485@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello, I am a webdesign student trying to figure out how to get forms to
&lt;br&gt;&amp;gt; work on a webpage. &amp;nbsp;How do I put this program to work? &amp;nbsp;I don't know where
&lt;br&gt;&amp;gt; to place the code from the &amp;quot;formmail.pl&amp;quot; file. &amp;nbsp;I have Dreamweaver 8.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;or any basic tips that will help me make a contact form in a webpage would
&lt;br&gt;&amp;gt; be very much appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;thanks
&lt;br&gt;&amp;gt; &amp;nbsp;Morgan
&lt;/div&gt;&lt;br&gt;Morgan, it's all in the documentation, which is bundled with
&lt;br&gt;the program code and available for download from the NMS
&lt;br&gt;Project's 'Programs' page (on SourceForge):
&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;Basically, the FormMail program (FormMail.pl) runs on the
&lt;br&gt;server. So, you'll need to know how to FTP that to your
&lt;br&gt;server, and where to place it.
&lt;br&gt;&lt;br&gt;You may also want to refer to the following resources:
&lt;br&gt;&lt;br&gt;NMS FAQ
&lt;br&gt;&lt;a href=&quot;http://nms-cgi.sourceforge.net/faq_nms.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.sourceforge.net/faq_nms.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;NMS Support Page
&lt;br&gt;&lt;a href=&quot;http://nms-cgi.sourceforge.net/support1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://nms-cgi.sourceforge.net/support1.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;NMS Support Mailing List Archive (mirrored on Nabble):
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/nms-f4293.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/nms-f4293.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Of course, after you've read the documentation and attempted
&lt;br&gt;the configuration, if you still have questions, or if you get
&lt;br&gt;any errors, please feel free to direct them to this list.
&lt;br&gt;&lt;br&gt;-Todd
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9539731&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/formmail-newbie-tp9426006p9539731.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9426006</id>
	<title>formmail newbie</title>
	<published>2007-03-11T17:04:01Z</published>
	<updated>2007-03-11T17:04:01Z</updated>
	<author>
		<name>greenglitter485</name>
	</author>
	<content type="html">&lt;HTML&gt;&lt;BODY&gt;
&lt;div&gt;Hello, I am a webdesign student trying to figure out how to get forms to work on a webpage.&amp;nbsp; How do I put this program to work?&amp;nbsp; I don't know where to place the code from the &quot;formmail.pl&quot; file.&amp;nbsp; I have Dreamweaver 8.&lt;br&gt;
&lt;br&gt;
or any basic tips that will help me make a contact form in a webpage would be very much appreciated.&lt;br&gt;
&lt;br&gt;
thanks&lt;br&gt;
Morgan&lt;br&gt;
&lt;/div&gt;

&lt;div class=&quot;AOLPromoFooter&quot;&gt;
&lt;hr style=&quot;margin-top:10px;&quot; /&gt;
AOL now offers free email to everyone.  Find out more about what's free from AOL at &lt;a href=&quot;http://pr.atwola.com/promoclk/1615326657x4311227241x4298082137/aol?redir=http://www.aol.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;b&gt;AOL.com&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;

&lt;/BODY&gt;&lt;/HTML&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys-and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9426006&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/formmail-newbie-tp9426006p9426006.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8315559</id>
	<title>[ nms-cgi-Feature Requests-1630897 ] &quot;From&quot; options</title>
	<published>2007-01-08T12:44:19Z</published>
	<updated>2007-01-08T12:44:19Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1630897, was opened at 2007-01-08 12:44
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1630897&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1630897&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Nobody/Anonymous (nobody)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: &amp;quot;From&amp;quot; options
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;The &amp;quot;from&amp;quot; address is the email of the person who filled out the form. This is usually blocked as spam by our email system. Would be nice to optionally have the &amp;quot;from&amp;quot; address set to the &amp;quot;mailto&amp;quot; address. That way I can easily whitelist our address and no form submissions will be blocked.
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1630897&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1630897&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys - and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8315559&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Feature-Requests-1630897---%22From%22-options-tp8315559p8315559.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8194199</id>
	<title>[ nms-cgi-Feature Requests-1610440 ] way to prevent spam</title>
	<published>2006-12-06T14:07:33Z</published>
	<updated>2006-12-06T14:07:33Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1610440, was opened at 2006-12-06 16:07
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1610440&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1610440&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Hanspeter Niederstrasser (nieder)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: way to prevent spam
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I've been getting (as well as the nms-cgi support form apparently), lots of spam being sent to me via my formmail install. &amp;nbsp;What I've noticed from all the spams I've gotten is that all the fields on the form are set to something by the bot. &amp;nbsp;Having a hidden form field set to nothing and then checking for a value when submitted should point out all spams since users won't be able to see that field. &amp;nbsp;Would this be something useful to incorporate into the next version of formail and/or TFmail?
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1610440&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1610440&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys - and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8194199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Feature-Requests-1610440---way-to-prevent-spam-tp8194199p8194199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7322244</id>
	<title>[ nms-cgi-Support Requests-1595361 ] [input_field] FOREACH directive - tfmail/NMStreq.pm line 689</title>
	<published>2006-11-12T17:59:42Z</published>
	<updated>2006-11-12T17:59:42Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Support Requests item #1595361, was opened at 2006-11-12 20:59
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1595361&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1595361&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: Install Problem (example)
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Karen H (khuffman)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: [input_field] FOREACH directive - tfmail/NMStreq.pm line 689
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I've set up TFMail.pl. As a recipient defined in
&lt;br&gt;default.trc, I receive the email including attachments
&lt;br&gt;just find. My redirect file spage.trt works fine as
&lt;br&gt;well, but I also want to send a confirmation email to
&lt;br&gt;the person that submitted the email, so I set the
&lt;br&gt;following in default.trc:
&lt;br&gt;&lt;br&gt;#
&lt;br&gt;#Confirmation email to sender.
&lt;br&gt;#
&lt;br&gt;confirmation_template: email_confirm
&lt;br&gt;confirmation_subject: Research Request - Confirmed
&lt;br&gt;confirmation_email_from: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7322244&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;myemail@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;And this is what I have in my email_confirm.trt file:
&lt;br&gt;%% NMS email template file %%
&lt;br&gt;Thank you for your research request submitted on {=
&lt;br&gt;date =}. Below is a summary of your submission:
&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;{= FOREACH input_field =}
&lt;br&gt;{= name =}: {= value =}
&lt;br&gt;&lt;br&gt;{= END =}
&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;But when I hit submit, I receive the following error:
&lt;br&gt;Application Error
&lt;br&gt;&lt;br&gt;An error has occurred in the program
&lt;br&gt;&lt;br&gt;[input_field] cannot be used in a FOREACH directive at
&lt;br&gt;tfmail/NMStreq.pm line 689. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Not quite sure what I'm doing wrong. Any suggestions
&lt;br&gt;would be appreciated. Thank you! Karen
&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;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1595361&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1595361&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Using Tomcat but need to do more? Need to support web services, security?
&lt;br&gt;Get stuff done quickly with pre-integrated technology to make your job easier
&lt;br&gt;Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
&lt;br&gt;&lt;a href=&quot;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=120709&amp;bid=263057&amp;dat=121642&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=120709&amp;bid=263057&amp;dat=121642&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7322244&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Support-Requests-1595361----input_field--FOREACH-directive---tfmail-NMStreq.pm-line-689-tp7322244p7322244.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7062666</id>
	<title>[ nms-cgi-Feature Requests-1585975 ] Display IP &amp; host</title>
	<published>2006-10-27T13:59:56Z</published>
	<updated>2006-10-27T13:59:56Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1585975, was opened at 2006-10-27 12:59
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1585975&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1585975&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: Nobody/Anonymous (nobody)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Display IP &amp; host
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I would like a feature that lets me choose in the
&lt;br&gt;config to display the IP and host in the guestbook or not.
&lt;br&gt;&lt;br&gt;for example a entry in the guestbook should look like this
&lt;br&gt;&lt;br&gt;Nice guestbook!
&lt;br&gt;Ingrid
&lt;br&gt;IP: 83.227.27.235
&lt;br&gt;(c-eb1be353.1170-1-64736c10.cust.bredbandsbolaget.se)
&lt;br&gt;Sweden - monday, 23 oktober, 2006 kl. 10:14:54 (CEST).
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1585975&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1585975&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Using Tomcat but need to do more? Need to support web services, security?
&lt;br&gt;Get stuff done quickly with pre-integrated technology to make your job easier
&lt;br&gt;Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
&lt;br&gt;&lt;a href=&quot;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=120709&amp;bid=263057&amp;dat=121642&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sel.as-us.falkag.net/sel?cmd=lnk&amp;kid=120709&amp;bid=263057&amp;dat=121642&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7062666&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Feature-Requests-1585975---Display-IP---host-tp7062666p7062666.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6569765</id>
	<title>[ nms-cgi-Feature Requests-1563012 ] Feature Requests: Result Padding / Linebreaks</title>
	<published>2006-09-21T11:19:00Z</published>
	<updated>2006-09-21T11:19:00Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Feature Requests item #1563012, was opened at 2006-09-21 13:19
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1563012&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1563012&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Priority: 5
&lt;br&gt;Submitted By: kwyjibo (kwyjibox)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: Feature Requests: Result Padding / Linebreaks
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;I would like to request two features for NMS Formmail.
&lt;br&gt;&lt;br&gt;1. A choice of padding the e-mailed results with
&lt;br&gt;additional spaces, so that all of the submitted data
&lt;br&gt;lines up. This provides improved readability. The
&lt;br&gt;padding would be based upon the length of the longest
&lt;br&gt;named field, and would be optional, set with either a
&lt;br&gt;hidden input field or in the user config, but
&lt;br&gt;preferrably the former.
&lt;br&gt;&lt;br&gt;2. Provide a way to insert a blank line into e-mailed
&lt;br&gt;results, to improve readability by separating chunks of
&lt;br&gt;submitted information. This would be very useful for
&lt;br&gt;large forms.
&lt;br&gt;&lt;br&gt;Thanks. :)
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1563012&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425772&amp;aid=1563012&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys -- and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6569765&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Feature-Requests-1563012---Feature-Requests%3A-Result-Padding---Linebreaks-tp6569765p6569765.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5679723</id>
	<title>Re: [Nms-cgi-support] only older versions available?</title>
	<published>2006-07-30T11:44:57Z</published>
	<updated>2006-07-30T11:44:57Z</updated>
	<author>
		<name>Todd Smith-2</name>
	</author>
	<content type="html">On 7/30/06, Bob Peters &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5679723&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bob@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp;From &lt;a href=&quot;http://sourceforge.net/projects/nms-cgi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/projects/nms-cgi&lt;/a&gt;&amp;nbsp;I clicked the &amp;quot;Download
&lt;br&gt;&amp;gt; nms&amp;quot; link to a page at &lt;a href=&quot;http://sourceforge.net/project/showfiles.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/project/showfiles.php&lt;/a&gt;?
&lt;br&gt;&amp;gt; group_id=39625 which listed 3.12 as the current formmail release.
&lt;br&gt;&amp;gt; Clicking the link gives me &lt;a href=&quot;http://sourceforge.net/project/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/project/&lt;/a&gt;&lt;br&gt;&amp;gt; showfiles.php?group_id=39625&amp;package_id=31936 which listed formmail
&lt;br&gt;&amp;gt; 3.12c1 as the newest version.
&lt;br&gt;&lt;br&gt;You are correct. Several of those scripts appear to be outdated
&lt;br&gt;versions. For the time being, use the link I provided in my previous
&lt;br&gt;reply. I am copying the developer list in this reply, in case they are
&lt;br&gt;unaware of this issue.
&lt;br&gt;&lt;br&gt;-Todd
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The FormMail.pl script it gets lists the version as 3.12c1. &amp;nbsp;The
&lt;br&gt;&amp;gt; FormMail.pl script I've been using (renamed to &amp;quot;formmail.pl&amp;quot;) lists
&lt;br&gt;&amp;gt; it's version as 3.14c1.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Jul 30, 2006, at 11:47 AM, Todd Alan Smith wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On 7/30/06, Robert Peters &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5679723&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bob@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;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;&amp;gt; Robert Peters (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5679723&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bob@...&lt;/a&gt;) on Sunday, July 30, 2006 at
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; 16:42:00
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; description: I'm using nms FormMail on two websites that I have on
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; a VPS
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; hosting account.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Just now, when checking to see if there is a newer version
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; available than I'm
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; using, I noted that the newest version available is 3.12 where
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I've been using 3.14.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Where did you see that? The official download page for the nms project
&lt;br&gt;&amp;gt; &amp;gt; has 3.14c1 and 3.14m1:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;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;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -Todd
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Have the two newest versions been recalled for some reason?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; enable: on
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ----
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Join SourceForge.net's Techsay panel and you'll get the chance to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; share your
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; opinions on IT &amp; business topics through brief surveys -- and earn
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; cash
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.techsay.com/default.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php&lt;/a&gt;?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; page=join.php&amp;p=sourceforge&amp;CID=DEVDEV
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this mailing list visit
&lt;br&gt;&amp;gt; &amp;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; &amp;gt;&amp;gt; and follow the simple instructions.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;&amp;gt; Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;&amp;gt; opinions on IT &amp; business topics through brief surveys -- and earn cash
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&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;Take Surveys. Earn Cash. Influence the Future of IT
&lt;br&gt;Join SourceForge.net's Techsay panel and you'll get the chance to share your
&lt;br&gt;opinions on IT &amp; business topics through brief surveys -- and earn cash
&lt;br&gt;&lt;a href=&quot;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5679723&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A--Nms-cgi-support--only-older-versions-available--tp5679723p5679723.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4869423</id>
	<title>[ nms-cgi-Support Requests-1505544 ] mail not received from Form Mail NMS</title>
	<published>2006-06-13T11:28:00Z</published>
	<updated>2006-06-13T11:28:00Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Support Requests item #1505544, was opened at 2006-06-13 11:27
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1505544&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1505544&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Submitted By: LHinson (lhinson)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: mail not received from Form Mail NMS
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;No errors are received but the email does not arrive
&lt;br&gt;after using the Contact Form.
&lt;br&gt;&lt;a href=&quot;http://www.littleworksusa.com/contact.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.littleworksusa.com/contact.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I installed the Current Form Mail NMS from this site.
&lt;br&gt;Thanks.
&lt;br&gt;LHinson
&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1505544&amp;group_id=39625&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=425770&amp;aid=1505544&amp;group_id=39625&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Nms-cgi-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4869423&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Nms-cgi-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/nms-cgi-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/--nms-cgi-Support-Requests-1505544---mail-not-received-from-Form-Mail-NMS-tp4869423p4869423.html" />
</entry>

</feed>
