- Fix mailto optional params in plain text messages aren't handled (#1487026)
| | |
| | | - Fix: contact group input is empty when using rename action more than once on the same group record |
| | | - Fix "Server Error! (Not Found)" when using utils/save-pref action (#1487023) |
| | | - Fix handling of Thunderbird's vCards (#1487024) |
| | | - Fix mailto optional params in plain text messages aren't handled (#1487026) |
| | | |
| | | RELEASE 0.4.1 |
| | | ------------- |
| | |
| | | $this->mailto_pattern = "/(" |
| | | ."[-\w!\#\$%&\'*+~\/^`|{}=]+(?:\.[-\w!\#\$%&\'*+~\/^`|{}=]+)*" // local-part |
| | | ."@([a-z0-9]([-a-z0-9]*[a-z0-9])?\\.)+[a-z]{2,5}" // domain-part |
| | | ."(\?\S+)?" // e.g. ?subject=test... |
| | | .")/i"; |
| | | } |
| | | |