Re: Can't start fetchmail in ip-up.d

1998-12-12 Thread Shao Zhang
On Sat, 12 Dec 1998, Mark Phillips wrote: > > > In my ip-up, I have a line > > run-parts /etc/ppp/ip-up.d > > > > So I put a file called fetchmail with a single line fetchmail. > > > > I also made it executable. > > > > But when my link is up, nothing happened. I tri

Re: Can't start fetchmail in ip-up.d

1998-12-11 Thread Alexander Kushnirenko
Hi, You may want to look in the file: more /usr/doc/fetchmail/fetchmail-up #!/bin/sh test -r /etc/fetchmailrc && \ fetchmail --syslog --invisible --fetchmailrc /etc/fetchmailrc It's an example you may use. Important thing is location of rc file. Works for me. That directory contains

Re: Can't start fetchmail in ip-up.d

1998-12-11 Thread Mark Phillips
> In my ip-up, I have a line > run-parts /etc/ppp/ip-up.d > > So I put a file called fetchmail with a single line fetchmail. > > I also made it executable. > > But when my link is up, nothing happened. I tried to ps ax the >process. It is not there. I also ch

Re: Can't start fetchmail in ip-up.d

1998-12-10 Thread Marc Haber
On Thu, 10 Dec 1998 19:04:19 +1100 (EST), you wrote: > In my ip-up, I have a line > run-parts /etc/ppp/ip-up.d > > So I put a file called fetchmail with a single line fetchmail. You need to put executable shell scripts in there. So your file fetchmail should contain #!/b