* [PATCH] BUG12070: Its not possible to use the underscore in email addresses
@ 2019-06-18 7:55 Alexander Marx
2019-06-20 22:13 ` Tim FitzGeorge
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Marx @ 2019-06-18 7:55 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 957 bytes --]
Using IPFire's Mailservice does not allow to enter a senders mail address with the underscore.
The function used to verify that is used from general-functions.pl.
Now the function 'validemail' allows the underscore in the address.
Fixes: #12070
---
config/cfgroot/general-functions.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl
index 04e36969c..aefcfb687 100644
--- a/config/cfgroot/general-functions.pl
+++ b/config/cfgroot/general-functions.pl
@@ -784,7 +784,7 @@ sub validemail {
return 0 if ( substr($parts[1],-1,1) eq '.' );
#check first addresspart (before '@' sign)
- return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9\.!\-\+#]+$/ );
+ return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9\.!\-\_\+#]+$/ );
#check second addresspart (after '@' sign)
return 0 if ( $parts[1] !~ m/^[a-zA-Z0-9\.\-]+$/ );
--
2.17.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] BUG12070: Its not possible to use the underscore in email addresses
2019-06-18 7:55 [PATCH] BUG12070: Its not possible to use the underscore in email addresses Alexander Marx
@ 2019-06-20 22:13 ` Tim FitzGeorge
0 siblings, 0 replies; 2+ messages in thread
From: Tim FitzGeorge @ 2019-06-20 22:13 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1335 bytes --]
On checking with RFC 3696, I think there are many more characters that
are legal in an email address local part. This includes '@' (although
it has to be quoted), which would completely break validemail if used.
It's apparently difficult to fully validate the local part of an email
address.
On 18/06/2019 08:55, Alexander Marx wrote:
> Using IPFire's Mailservice does not allow to enter a senders mail address with the underscore.
> The function used to verify that is used from general-functions.pl.
> Now the function 'validemail' allows the underscore in the address.
>
> Fixes: #12070
> ---
> config/cfgroot/general-functions.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl
> index 04e36969c..aefcfb687 100644
> --- a/config/cfgroot/general-functions.pl
> +++ b/config/cfgroot/general-functions.pl
> @@ -784,7 +784,7 @@ sub validemail {
> return 0 if ( substr($parts[1],-1,1) eq '.' );
>
> #check first addresspart (before '@' sign)
> - return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9\.!\-\+#]+$/ );
> + return 0 if ( $parts[0] !~ m/^[a-zA-Z0-9\.!\-\_\+#]+$/ );
>
> #check second addresspart (after '@' sign)
> return 0 if ( $parts[1] !~ m/^[a-zA-Z0-9\.\-]+$/ );
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-06-20 22:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-18 7:55 [PATCH] BUG12070: Its not possible to use the underscore in email addresses Alexander Marx
2019-06-20 22:13 ` Tim FitzGeorge
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox