|  | email notification
|
Original Message | email notification Author Kerry Schenker on 11-27-2002 at 10:23 (EST) | When I test the email in the diognostic area I am told the email has been sent to the address that I put in. But I never receive it. I am running Linux Red Hat 7.2 and have the setting at "Sockets"
Can you help?
thanks,
Kerry Schenker
|
| Table Of Contents | Sockets email Microburst Support Team, 2002-12-02 06:31:53 (1) |
|
| Messages In This Discussion |
1. Sockets email Author Microburst Support Team on 12-02-2002 at 06:31 (EST) | | You may need to change some of the SOCKET settings in the script. Open your ushop-lib.pl script and locate the following 5 lines near the top of the script:
#use Socket; #$AF_INET = AF_INET; #$SOCK_STREAM = SOCK_STREAM; $AF_INET = 2; $SOCK_STREAM = 1;
Try uncommenting the first 3 lines and commenting out the last 2 lines... by adding/removing # signs as shown below:
use Socket; $AF_INET = AF_INET; $SOCK_STREAM = SOCK_STREAM; #$AF_INET = 2; #$SOCK_STREAM = 1;
This is often necessary to get the SOCKETS email option to work on Unix servers.
|
|
|
|