On Wed, 2019-03-13 at 19:19 +0100, Ralf Mardorf wrote: > On Wed, 2019-03-13 at 11:48 -0400, Fletcher Moore wrote: > > Using Evolution 3.30.5. I tried setting up a filter but the options > > seem to be aimed at selecting senders with specific emails or portions > > thereof. I want to select senders who are in my contacts. Is this > > possible? > > At least a workaround via "Pipe to Program" might do the job. > > OTOH running something such as e.g. > > strings .local/share/evolution/addressbook/system/contacts.db | grep @ > > won't do the job.
Oops! Perhaps something like this already does the job. That the output still contains some crap shouldn't matter. You could compare the senders address by a bash/dash script loop with the content of the output such as strings $HOME/.local/share/evolution/addressbook/system/contacts.db | grep @ and return via "exit" either a "0" for a match or any number != 0 if it doesn't match. _______________________________________________ evolution-list mailing list [email protected] To change your list options or unsubscribe, visit ... https://mail.gnome.org/mailman/listinfo/evolution-list
