diff --git a/mxrouter.go b/mxrouter.go index 3b698d5..afd7917 100644 --- a/mxrouter.go +++ b/mxrouter.go @@ -10,7 +10,7 @@ // Use a single LDAP connection protected by a mutex // // v0.9.6 : add PID file -// v0.9.7.2 : Check MX format with regex +// v0.9.8 : Check MX format with regex // package main @@ -33,7 +33,7 @@ import ( ) const ( - version = "0.9.7.2" + version = "0.9.8" // Match le nom de domaine, soit les 2 dernieres chaines separees par un point. // Peut aussi terminer par un point (Ex: srv.domaine.com. => domaine.com) DomainRegexpFormat = `([0-9A-Za-z\-]*)\.([0-9A-Za-z\-]*)(?:\.)?$`