Summary | attendees without domain |
Queue | Kronolith |
Queue Version | FRAMEWORK_3 |
Type | Bug |
State | Not A Bug |
Priority | 1. Low |
Owners | |
Requester | yohann.fourteau (at) aitb (dot) org |
Created | 01/24/2008 (6323 days ago) |
Due | |
Updated | 05/25/2008 (6201 days ago) |
Assigned | 01/24/2008 (6323 days ago) |
Resolved | 05/25/2008 (6201 days ago) |
Milestone | |
Patch | No |
had a workaround.
My customer want a groupware solution easy to use. He wants to type
the login (because, in the firm, you don't use the mail to identify
someone but his login) and have the free/busy informations to organize
its meetings.
Don't worry, it was a few month ago, now they have choosen Exchange
and OWA (for different reasons). I like very much horde but I do what
my customer want me to do.
functionality in favor of typing a few less characters.
informations (you need a mail).
When I enter a meeting in my agenda, I prefer to have free/busy
information of the attendee than just the possibility to put a login
in the attendees list...
If we could get free/busy information from a single login, it would be great.
do this again?
Taken from Chuck Hagenbuch
State ⇒ Not A Bug
to add attendees without email addresses.
State ⇒ Resolved
Assigned to Chuck Hagenbuch
is basically the same context. I've added it in there - this will be
in the next Kronolith 2.2 RC. Thanks.
"Default domain to add to attendee email addresses if none is specified."
$conf['storage']['default_domain']
And I can admit I don't know what that variable is used for...
fixes to parsing attendees with only local names recently:
http://cvs.horde.org/diff.php?r1=1.36&r2=1.37&f=kronolith%2Fattendees.php
I've tried it and it's better. I've no more "0" "1" attendees. But
it's not perfect...
If I add "login" as attendee, it adds "login" but doesn't find any
free/busy information.
With my modification, if I add "login" as attendee, it adds
"login@mydomain.com" and with a good configuration of turba, it can
retrieve the free/busy information of login@lfm.lan...
State ⇒ Feedback
fixes to parsing attendees with only local names recently:
http://cvs.horde.org/diff.php?r1=1.36&r2=1.37&f=kronolith%2Fattendees.php
Priority ⇒ 1. Low
State ⇒ Unconfirmed
Queue ⇒ Kronolith
Summary ⇒ attendees without domain
Type ⇒ Bug
address. If you set up a default domain for the free/busy in the
configuration of kronolith and if you only give the first part of the
email (i.e. myname instead of myname@domain.com), the attendee will
be named 0 or 1, or 2, and so on... and not
yohann.fourteau@defaultdomain.
At line 52 of kronolith/attendees.php, if you change the line :
$newAttendeeParsed = $parser->parseAddressList($newAttendee, '',
false, false);
by
$newAttendeeParsed = $parser->parseAddressList($newAttendee,
'$thevarwithdefaultdomain', false, false);
It will add the default domain to the person.
It's faster to give login name than full email address...
I don't known if it can help.