Author Topic: Hard time setting up bounce.cgi on DreamHost  (Read 6620 times)

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Hard time setting up bounce.cgi on DreamHost
« Reply #15 on: September 28, 2006, 03:43:02 pm »
Quote
When I enter chmod +x bounce.cgi, nothing happens. Is it suppose to show a message under it???

No, it will not show a message unless there is an error.

You can verify the bounce.cgi permissions with the following command:

ls -al bounce.cgi

You should see the following next to the file:

-rwxr-xr-x

Here's some information about chmod:
 
http://en.wikipedia.org/wiki/Chmod

or you can probably type "man chmod" from the shell (q to quit).

In the "Manage Email" section of the DreamHost control panel does it say:

bounce@yourdomain.com "Also forwards to: Nothing besides bounceuser" ?

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

  • Guest
Hard time setting up bounce.cgi on DreamHost
« Reply #16 on: September 28, 2006, 06:56:31 pm »
when I type in

Is -al bounce.cgi

I get this
Code: [Select]

-rwxrwxr-x  1 yd_bounce pg909916 924 2006-09-27 18:00 bounce.cgi


the yd_bounce is my bounceuser.

Yes my "Manage Email" section shows what you said with my bounce email which "Also forwards to : Nothing besides mybounceuser".

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Hard time setting up bounce.cgi on DreamHost
« Reply #17 on: September 28, 2006, 09:06:24 pm »
It looks like you might have done 775 instead of 755, but it should (might) still work.

In an effort to solve this particular problem for you (so we can move on to the next one ;) ) I will offer my hands-on assistance.  Please submit your info at the link below:

http://listmailpro.com/support?t=other

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

  • Guest
Hard time setting up bounce.cgi on DreamHost
« Reply #18 on: September 28, 2006, 09:52:12 pm »
Details Sent.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Hard time setting up bounce.cgi on DreamHost
« Reply #19 on: September 28, 2006, 11:04:44 pm »
I had a look and it would appear to be a simple mistake:

In bounce.cgi,
Code: [Select]
stMail bounce.cgi
#
# Modify this file to contain your ListMail URL, place it in your cgi-bin directory and CHMOD it to 755.


should have been:
Code: [Select]
#!/usr/bin/perl
# ListMail bounce.cgi
#
# Modify this file to contain your ListMail URL, place it in your cgi-bin directory and CHMOD it to 755.

It's updated, tested and working.

Regards :D
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

  • Guest
Hard time setting up bounce.cgi on DreamHost
« Reply #20 on: September 29, 2006, 12:29:57 am »
oh wow that was fast. Thanks