DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦fbdd5c237⟧ TextFile

    Length: 547 (0x223)
    Types: TextFile
    Names: »mailfilter«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« 
        └─⟦e5a54fb17⟧ 
            └─⟦this⟧ »pp-5.0/Chans/822-local/mailfilter« 

TextFile

#
# This is a comment
#
print $(to);
if ($(to) == /jpo/ ) {
	pipe "rcvstore +to";
        ignore pipe "rcvalert 'to folder $(subject)'";
	delivered = TEMPFAIL;
        exit ;
}
else if ($(to) == /jpo/ && $(from) == /pp-workers/) {
        pipe "rcvalert +pp";
        ignore pipe "rcvalert 'PP folder'";
        exit(OK);
}
else if ($(sender) == /mmdf/) 
        pipe "rcvstore +mmdf2";
else {
        pipe "rcvstore +inbox";
	pipe "rcvalert 'foo'";
}
if ( ! delivered)  {
        pipe "rcvstore +inbox";
	ignore pipe "rcvalert 'inbox folder'";
}