http://qs321.pair.com?node_id=300228


in reply to Re: Re: email parsing
in thread email parsing

Well, I am on a Cpanel Machine, I'm using the forward an email feature to PIPE it to the script. It works for my HelpDesk Application.

What does "I'm using the forward an email feature" mean? Do you mean a *nix .forward file? If not, a quick explanation of what the "forward an email feature" is and what it actually does would be, er, helpful don't you think?

-- vek --

Replies are listed 'Best First'.
Re: email parsing
by powerhouse (Friar) on Oct 18, 2003 at 03:43 UTC
    I'm sorry. What I mean is that Cpanel is a web interface that gives just about complete control over the domain.

    In the email manager, there is a forward feature, which bascially just allows you to enter a forwarding address for a chosen email address.

    You can tell the form what email you want to forward from your domain name, and enter a forwarding address. You can also choose to pipe it to a script, by entering the pipe and path: |/path/to/script.pl instead of an email address.

    Either way, Cpanel, the software that manages the server, puts that entry into your /etc/valiases/domain file.
    Such as this:
    It adds a line such as this:
    email_addy_to_forward@domain.com: |/home/path/to/script.pl
    or:
    email_addy_to_forward@domain.com: myotheremail@domain.net
    Whatever you enter into the form in your control panel(cpanel).
    thx,
    Richard

      You could try piping an email to your script from the command line manually. If it works you can safely assume that your script is not the cause of the problem.

      cat some_email_file | /path-to/your_script.pl

      If that does work then you'll probably have to find out exactly what that Cpanel thingamajig is doing.

      -- vek --