<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet href="https://dev.horde.org/themes/horde//default/feed-rss.xsl" type="text/xsl"?> 
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 
 <channel> 
  <title>\U does not behave as described in the custom sql driver</title> 
  <pubDate>Fri, 10 Apr 2026 08:36:35 +0000</pubDate> 
  <link>https://bugs.horde.org/ticket/7916</link> 
  <atom:link rel="self" type="application/rss+xml" title="\U does not behave as described in the custom sql driver" href="https://bugs.horde.org/ticket/7916/rss" /> 
  <description>\U does not behave as described in the custom sql driver</description> 
 
   
   
  <item> 
   <title>I am using vacation-FRAMEWORK_3-2009-01-29.tar.gz



The con</title> 
   <description>I am using vacation-FRAMEWORK_3-2009-01-29.tar.gz



The config for custom sql says &quot;The current FULL username will be provided as \U&quot;, but actually only the username up to the @ is provided.  (I know this could be fixed by just changing the description, but at least to me, changing the behavior to give the full username would be much more helpful.)</description> 
   <pubDate>Thu, 29 Jan 2009 21:36:05 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t52112</link> 
  </item> 
   
  <item> 
   <title>Same in the sql driver.  Also, it doesn&#039;t seem to care what </title> 
   <description>Same in the sql driver.  Also, it doesn&#039;t seem to care what I set the hordeauth parameter to.</description> 
   <pubDate>Thu, 29 Jan 2009 21:47:04 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t52115</link> 
  </item> 
   
  <item> 
   <title>&gt; Same in the sql driver.  Also, it doesn&#039;t seem to care wha</title> 
   <description>&gt; Same in the sql driver.  Also, it doesn&#039;t seem to care what I set the 

&gt; hordeauth parameter to.



The latter has been fixed in CVS already.</description> 
   <pubDate>Thu, 29 Jan 2009 22:03:08 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t52116</link> 
  </item> 
   
  <item> 
   <title>I think we need different placeholders for full user name an</title> 
   <description>I think we need different placeholders for full user name and local user name, i.e. username without domain or with realm suffix.</description> 
   <pubDate>Thu, 29 Jan 2009 22:10:14 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t52117</link> 
  </item> 
   
  <item> 
   <title>This fixes it at least for me:



in Driver.php where it say</title> 
   <description>This fixes it at least for me:



in Driver.php where it says:

    function Vacation_Driver($user, $realm, $params = array())

    {

        $this-&gt;_params = $params;

    

        // Check if hordeauth is set to &#039;full&#039;

        $hordeauth = $this-&gt;getParam(&#039;hordeauth&#039;);

        if ($hordeauth !== &#039;full&#039;) {

            @list($user,) = explode(&#039;@&#039;, $user, 2);

        }

        $this-&gt;_user = $user;



        if (!isset($params[$realm])) {

            $realm = &#039;default&#039;;

        }

        $this-&gt;_realm = $realm;

    }



change it to:    function Vacation_Driver($user, $realm, $params = array())

    {

        $this-&gt;_params = $params;

    

        if (!isset($params[$realm])) {

            $realm = &#039;default&#039;;

        }

        $this-&gt;_realm = $realm;

        

        // Check if hordeauth is set to &#039;full&#039;

        $hordeauth = $this-&gt;getParam(&#039;hordeauth&#039;);

        if ($hordeauth !== &#039;full&#039;) {

            @list($user,) = explode(&#039;@&#039;, $user, 2);

        }

        $this-&gt;_user = $user;



    }



I don&#039;t know your codebase well, but it seems to me that getParam depends on $this-&gt;_ream being set, but it wasn&#039;t.</description> 
   <pubDate>Thu, 29 Jan 2009 22:15:40 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t52120</link> 
  </item> 
   
  <item> 
   <title>Sorry, I didn&#039;t refresh before commenting... didn&#039;t see your</title> 
   <description>Sorry, I didn&#039;t refresh before commenting... didn&#039;t see your comments.</description> 
   <pubDate>Thu, 29 Jan 2009 22:17:44 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t52121</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in CVS for this ticket:

http://cvs.h</title> 
   <description>Changes have been made in CVS for this ticket:

http://cvs.horde.org/diff.php/forwards/config/conf.xml?rt=horde&amp;r1=1.15&amp;r2=1.16&amp;ty=u
http://cvs.horde.org/diff.php/forwards/docs/CHANGES?rt=horde&amp;r1=1.47&amp;r2=1.48&amp;ty=u
http://cvs.horde.org/diff.php/forwards/lib/Driver/customsql.php?rt=horde&amp;r1=1.20&amp;r2=1.21&amp;ty=u
http://cvs.horde.org/diff.php/vacation/config/conf.xml?rt=horde&amp;r1=1.34&amp;r2=1.35&amp;ty=u
http://cvs.horde.org/diff.php/vacation/docs/CHANGES?rt=horde&amp;r1=1.79&amp;r2=1.80&amp;ty=u
http://cvs.horde.org/diff.php/vacation/lib/Driver/customsql.php?rt=horde&amp;r1=1.6&amp;r2=1.7&amp;ty=u</description> 
   <pubDate>Tue, 18 Aug 2009 12:52:14 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t55352</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in CVS for this ticket:

http://cvs.h</title> 
   <description>Changes have been made in CVS for this ticket:

http://cvs.horde.org/diff.php/forwards/config/conf.xml?rt=horde&amp;r1=1.7.2.3&amp;r2=1.7.2.4&amp;ty=u
http://cvs.horde.org/diff.php/forwards/docs/CHANGES?rt=horde&amp;r1=1.34.2.14&amp;r2=1.34.2.15&amp;ty=u
http://cvs.horde.org/diff.php/forwards/lib/Driver/customsql.php?rt=horde&amp;r1=1.13.2.6&amp;r2=1.13.2.7&amp;ty=u
http://cvs.horde.org/diff.php/vacation/config/conf.xml?rt=horde&amp;r1=1.15.2.12&amp;r2=1.15.2.13&amp;ty=u
http://cvs.horde.org/diff.php/vacation/docs/CHANGES?rt=horde&amp;r1=1.57.2.21&amp;r2=1.57.2.22&amp;ty=u
http://cvs.horde.org/diff.php/vacation/lib/Driver/customsql.php?rt=horde&amp;r1=1.2.2.5&amp;r2=1.2.2.6&amp;ty=u</description> 
   <pubDate>Tue, 18 Aug 2009 12:54:51 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t55353</link> 
  </item> 
   
  <item> 
   <title>I did the same for forwards too.</title> 
   <description>I did the same for forwards too.</description> 
   <pubDate>Tue, 18 Aug 2009 12:55:42 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7916#t55354</link> 
  </item> 
   
   
 
 </channel> 
</rss> 
