Home »
FUDforum Development »
Bug Reports »
From header parsing issue
From header parsing issue [message #187619] |
Wed, 07 November 2018 13:52 |
|
Zrubi
Messages: 5 Registered: November 2018
Karma:
|
Junior Member |
|
|
Hi,
I'm using the auto accout create feature, where the email address and the username are parsed from the From header.
It seem to fail where the header looks like this:
"From: <username(at)domain(dot)name>"
the result are:
email: <username(at)domain(dot)name>
login: <username
name: <username
I have found a simple fix for this issue:
// Fetch From email and possible name.
- if (preg_match('!(.+?)<(.+?)>!', $this->headers['from'], $matches)) {
+ if (preg_match('!(.*)<(.+)>!', $this->headers['from'], $matches)) {
$this->from_email = trim($matches[2]);
It seems working for me - however I really don't get that original regex pattern
why those '?' characters was needed in the pattern?
[Updated on: Wed, 07 November 2018 16:16] Report message to a moderator
|
|
|
Goto Forum:
Current Time: Sun Nov 03 13:20:55 GMT 2024
Total time taken to generate the page: 0.04878 seconds