Jump to content

NMS FormMail Version 3.14c1 Help


Guest ivita

Recommended Posts

Guest ivita

:/

 

I tried to install NMS FormMail Version 3.14c1 but I received errors when I click the summit botton on the contact page

 

http://mckinlay.us.com/MCK-contact%20us.htm

 

 

 

I need Help. What I am missing?

 

Thanks so much

 

 

 

#!/usr/bin/perl -wT

#

# NMS FormMail Version 3.14c1

#

 

use strict;

use vars qw(

$DEBUGGING $emulate_matts_code $secure %more_config

$allow_empty_ref $max_recipients $mailprog @referers

@allow_mail_to @recipients %recipient_alias

@valid_ENV $date_fmt $style $send_confirmation_mail

$confirmation_text $locale $charset $no_content

$double_spacing $wrap_text $wrap_style $postmaster

$address_style

);

 

# PROGRAM INFORMATION

# -------------------

# FormMail.pl Version 3.14c1

#

# This program is licensed in the same way as Perl

# itself. You are free to choose between the GNU Public

# License or

# the Artistic License

#

#

# For help on configuration or installation see the

# README file or the POD documentation at the end of

# this file.

 

# USER CONFIGURATION SECTION

# --------------------------

# Modify these to your own settings. You might have to

# contact your system administrator if you do not run

# your own web server. If the purpose of these

# parameters seems unclear, please see the README file.

#

BEGIN

{

$DEBUGGING = 0;

$emulate_matts_code= 0;

$secure = 1;

$allow_empty_ref = 1;

$max_recipients = 1;

$mailprog = '/usr/sbin/sendmail -oi -t';

$postmaster = '';

@referers = qw(mckinlay.us.com localhost);

@allow_mail_to = qw(andrew@mckinlay.us.com localhost);

@recipients = ();

%recipient_alias = ('1'=>'andrew@mckinlay.us.com');('2' => 'fivestar@mckinlay.us.com')

@valid_ENV = qw(REMOTE_HOST REMOTE_ADDR REMOTE_USER HTTP_USER_AGENT);

$locale = '';

$charset = 'iso-8859-1';

$date_fmt = '%A, %B %d, %Y at %H:%M:%S';

$style = '/css/nms.css';

$no_content = 0;

$double_spacing = 1;

$wrap_text = 0;

$wrap_style = 1;

$address_style = 0;

$send_confirmation_mail = 0;

$confirmation_text = <<'END_OF_CONFIRMATION';

From: you@your.com

Subject: form submission

 

Thank you for your form submission.

 

END_OF_CONFIRMATION

 

# You may need to uncomment the line below and adjust the path.

# use lib './lib';

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...