| Summary | forward doesn't use full username (with domain) for backend |
| Queue | Forwards |
| Queue Version | 3.0 |
| Type | Enhancement |
| State | Resolved |
| Priority | 1. Low |
| Owners | bklang (at) horde (dot) org |
| Requester | jonathan (at) crazylinux (dot) de |
| Created | 11/7/06 (7094 days ago) |
| Due | |
| Updated | 5/5/08 (6549 days ago) |
| Assigned | |
| Resolved | 5/5/08 (6549 days ago) |
| Milestone | |
| Patch | No |
Assigned to Ben Klang
State ⇒ Resolved
http://lists.horde.org/archives/cvs/Week-of-Mon-20080505/078037.html
State ⇒ Accepted
Priority ⇒ 1. Low
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ forward doesn't use full username (with domain) for backend
Queue ⇒ Forwards
i use forward with qmail-ftp-backend. also the pure-ftpd-server uses
vpopmail as auth-backend, so you need to login to the ftp with the
email-address as username
as workaround i changed in forward/main.php
...
// Get the current login username and realm.
#$split = explode('@', Auth::getAuth());
#$user = @$split[0];
$user = Auth::getAuth();
$realm = @$split[1];
...
regrads Jonathan