annotate debian/ip-up @ 464:d9035d08fe51
noffle
[svn] * src/fetch.c: Log failed posting that we can't mail back to the sender
or where sending fails to <Noffle spool>/failed.posting.
author |
bears |
date |
Wed, 23 Jul 2003 10:32:25 +0100 |
parents |
146e6cfe86ba |
children |
|
rev |
line source |
301
|
1 #!/bin/sh
|
|
2
|
334
|
3 set -e
|
|
4
|
301
|
5 # 'ppp' should be a sane default here
|
|
6 NOFFLE_FETCHMODE=ppp
|
334
|
7
|
340
|
8 [ -f /etc/default/noffle ] && . /etc/default/noffle || :
|
301
|
9
|
334
|
10 if [ -x /usr/bin/noffle -a "$NOFFLE_FETCHMODE" = ppp ]; then
|
384
|
11 /usr/bin/noffle --online
|
|
12 /usr/bin/noffle --fetch &
|
334
|
13 fi
|
|
14
|
|
15 exit 0
|