> The two recipes I added yesterday were these: > > :0: > * ^TO_ [email protected] > GIS > > :0: > * ^Subject: .*[GRASS-user] > GIS > > ... and every incoming message since then ended up in ~/mail/GIS, where I > found them a few minutes ago.
[] is special in regular expressions. you were saying to match anything that had the letters G, R, A, S, S-u, s, e, r into GIS. the S-u was the killer becuase that matches everything between S and u, which include a-u. you want: * ^Subject: .*\[GRASS-user] _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
