Skip to Content.
Sympa Menu

en - Re: [sympa-users] change with include_file?

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: Amos <address@concealed>
  • To: "address@concealed >> address@concealed" <address@concealed>
  • Subject: Re: [sympa-users] change with include_file?
  • Date: Mon, 17 Feb 2020 16:35:00 -0600

On Mon, Feb 17, 2020 at 3:23 PM Amos <address@concealed> wrote:
Prior to 6.2.48, the contents of the include_file could be more than just the email address.  I could have something like:

email@domain Firstname Lastname

and anything after the email address would be considered the displayName.  Now it seems it is no longer doing that. 

Amos


Maybe this is all that's needed?
--- bin/Sympa/DataSource/File.pm._orig  2020-02-17 16:27:05.139543494 -0600
+++ bin/Sympa/DataSource/File.pm        2020-02-17 16:27:27.143689188 -0600
@@ -75,7 +75,7 @@
             $log->syslog('err', 'Skip badly formed line: "%s"', $line);
             next;
         }
-        my ($email, $gecos) = ($1, $2);
+        my ($email, $gecos) = ($1, $4);
         $gecos =~ s/\s+\z// if defined $gecos;
         $found++;








Archive powered by MHonArc 2.6.19+.

Top of Page