On Monday, 16 July, 2012 at 13:06:49 BST, Matthias Apitz wrote:
Do we have anything in mutt which I could use to do a syntax check of mail addrs as described in RFC 3696 (...)? Or are there any pointers to such a tool, for C or Java? Thanks in advance
#!/usr/bin/env perl use strict; use warnings; use Email::Valid; print Email::Valid->address("a~`*&^\$_-={}'?b\@tamay-dogan.net") ? 'yes' : 'no'; -- .