[xwiki-users] Sender in SendPageByEmail

2009-04-02 Thread Ryszard Łach
Hi. I have a problem with sender address. I have the following configuration: 1. logged in user with email address defined in edit->objects 2. SendPageByEmail from default-1.8.xar with code #set($sender = $context.user.substring(6)) When I try to send an email the sender is being set to 'XWiki.

Re: [xwiki-users] Sender in SendPageByEmail

2009-04-02 Thread Guillaume Lerouge
Hi Ryszard, On Thu, Apr 2, 2009 at 1:09 PM, Ryszard Łach wrote: > Hi. > > I have a problem with sender address. I have the following configuration: > > 1. logged in user with email address defined in edit->objects > 2. SendPageByEmail from default-1.8.xar with code > > #set($sender = $context.us

Re: [xwiki-users] Sender in SendPageByEmail

2009-04-02 Thread Ryszard Łach
W dniu 2 kwietnia 2009 13:53 użytkownik Guillaume Lerouge < guilla...@xwiki.com> napisał: > > What elsecan I check? > > > Are you in a XWiki Enterprise Manager instance? In this case $context.user > would be something like xwiki:XWiki.rlach which means only the first 6 > chars > would be trimmed,

Re: [xwiki-users] Sender in SendPageByEmail

2009-04-02 Thread Guillaume Lerouge
Hi Richard, 2009/4/2 Ryszard Łach > W dniu 2 kwietnia 2009 13:53 użytkownik Guillaume Lerouge < > guilla...@xwiki.com> napisał: > > > > What elsecan I check? > > > > > > Are you in a XWiki Enterprise Manager instance? In this case > $context.user > > would be something like xwiki:XWiki.rlach whi

Re: [xwiki-users] Sender in SendPageByEmail

2009-04-02 Thread Ryszard Łach
W dniu 2 kwietnia 2009 14:27 użytkownik Guillaume Lerouge < guilla...@xwiki.com> napisał: > > Try with: > set($sender = > ${context.user.substring(12)}...@${request.servername.substring(4)}) > Here I've put 4 as I assumed your domain name would be "www.something.com" > If your domain name is "some

Re: [xwiki-users] Sender in SendPageByEmail

2009-04-02 Thread Guillaume Lerouge
Hi, 2009/4/2 Ryszard Łach > W dniu 2 kwietnia 2009 14:27 użytkownik Guillaume Lerouge < > guilla...@xwiki.com> napisał: > > > > > Try with: > > set($sender = > > ${context.user.substring(12)}...@${request.servername.substring(4)}) > > Here I've put 4 as I assumed your domain name would be " > ww