You are viewing a plain text version of this content. The canonical link for it is here.
Posted to infrastructure-issues@apache.org by "Sam Ruby (Created) (JIRA)" <ji...@apache.org> on 2012/01/10 23:48:44 UTC

[jira] [Created] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Validate that "Alias addresses" contain exactly one address
-----------------------------------------------------------

                 Key: INFRA-4315
                 URL: https://issues.apache.org/jira/browse/INFRA-4315
             Project: Infrastructure
          Issue Type: Improvement
      Security Level: public (Regular issues)
            Reporter: Sam Ruby
            Priority: Minor


If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.

If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.

P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sam Ruby (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sam Ruby closed INFRA-4315.
---------------------------

    
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Assignee: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sebb (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184291#comment-13184291 ] 

Sebb commented on INFRA-4315:
-----------------------------

Here's a crude fix for the spurious output lines.

Seems to work on minotaur.

Index: generate-MailAlias.py
===================================================================
--- generate-MailAlias.py       (revision 802403)
+++ generate-MailAlias.py       (working copy)
@@ -20,6 +20,7 @@
     for dn, attrs in lh.search_s(COMMITTERS_OU, ldap.SCOPE_ONELEVEL, '(uid=*)', ['uid', 'mail', ASF_ALTMAIL_ATTR]):
         availid = attrs['uid'][0]
         for addr in set(attrs.get('mail', []) + attrs.get(ASF_ALTMAIL_ATTR, [])):
+          if addr != '':
             print "%s@apache.org,%s,%s\n" % (availid, addr, 'member=%s' % ['no','yes'][availid in Members]),

 if __name__ == '__main__':

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184852#comment-13184852 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> rubys -- please apply your patch and run 'svn up' to effect it.  No need to wait on ckl for this.

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Assigned] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sam Ruby (Assigned) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sam Ruby reassigned INFRA-4315:
-------------------------------

    Assignee: Sam Ruby
    
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Assignee: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184849#comment-13184849 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> sebb -- if you still want a comment syntax then patch either the script or the docs that point to it.

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13183859#comment-13183859 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> +1 to renaming the field and to adding some simple validations (such as /@.*@/).  Anyone care to provide a patch?  (Not necessarily Sam)

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184254#comment-13184254 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> patches welcome

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184149#comment-13184149 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> fixed mattmann. any other red entries ?

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184920#comment-13184920 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<rubys> patch applied

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sebb (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184873#comment-13184873 ] 

Sebb commented on INFRA-4315:
-----------------------------

@rubys - do you think allowing comments would be useful?

I was thinking of using # in column 1, as per shell and various scripting languages.

[I assume that # cannot appear as the first character of a login name]
                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184143#comment-13184143 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> +1, please apply.  (No restart of anything needed)

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sebb (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184247#comment-13184247 ] 

Sebb commented on INFRA-4315:
-----------------------------

Also, it occurs to me that the file syntax has already been changed, so it might be an opportunity to define a comment syntax?

If so, then it would be useful to add a header comment with a timestamp.
Also the SVN $Id and perhaps $HeadURL of the script used to generate it.

This might mean changing the script to generate sorted output, rather than sorting externally.

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sebb (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184230#comment-13184230 ] 

Sebb commented on INFRA-4315:
-----------------------------

Lots of spurious lines are still present in the generated MailAlias.txt:

,member=no
...
adasilva@apache.org,,member=no
...
altheim@apache.org,,member=no

Looks like the script may not be allowing for logins with no aliases.
                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13183858#comment-13183858 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> is the spurious line still there?

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sam Ruby (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sam Ruby resolved INFRA-4315.
-----------------------------

    Resolution: Fixed

Sebb: I have no opinion on the comment syntax other than to say that if pursued it is a separate bug.  Meanwhile, I'm resolving and closing this one.
                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Assignee: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "Sam Ruby (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184081#comment-13184081 ] 

Sam Ruby commented on INFRA-4315:
---------------------------------

First line still reads ",member=no".  Is this intended?

Untested patch: http://people.apache.org/~rubys/selfserv.patch

If you apply the patch, I suggest that you retroactively go back and fix up any entries (currently there is only one) that don't meet this criteria.  Invalid email addresses show up in red on the following page: https://whimsy.apache.org/roster/aliases
                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (INFRA-4315) Validate that "Alias addresses" contain exactly one address

Posted by "#asfinfra IRC Bot (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/INFRA-4315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13184293#comment-13184293 ] 

#asfinfra IRC Bot commented on INFRA-4315:
------------------------------------------

<danielsh> I already applied a fix for those

                
> Validate that "Alias addresses" contain exactly one address
> -----------------------------------------------------------
>
>                 Key: INFRA-4315
>                 URL: https://issues.apache.org/jira/browse/INFRA-4315
>             Project: Infrastructure
>          Issue Type: Improvement
>      Security Level: public(Regular issues) 
>            Reporter: Sam Ruby
>            Priority: Minor
>
> If you scan https://id.apache.org/info/MailAlias.txt, you will see an entry with multiple "@" signs.
> If you go to http://id.apache.org/, you will see one or more fields named "Alias addresses:".  Either actually support multiple addresses in this field, or relabel the field and actively prevent multiple email addresses from being entered into this field.  This could be as sophisticated as validating the email address, or could be as simple as ensuring that there is exactly one '@' present, or alternately ensuring that there aren't any characters such as spaces or commas in the field.
> P.S.  Not worth opening a separate bug report, but there is a spurious extra line at the top of https://id.apache.org/info/MailAlias.txt

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira