Displaying 5 results from an estimated 5 matches for "fakedir".
Did you mean:
makedir
2014 May 20
3
Setting mail location in SQL?
Trying to figure out the syntax to set a mail_location for SQL. This
doesn't work:
userdb {
driver = sql
args = /etc/dovecot/master-combined-sql.conf
override_fields =
mail_location=maildir:/fakedir/%d/%n:INBOX=/fakedir:LAYOUT=fs
}
Does anyone know the proper syntax?
Thanks in advance
2014 May 20
1
Setting mail location in SQL?
...E-----
Hash: SHA1
On Mon, 19 May 2014, Marc Perkel wrote:
> Trying to figure out the syntax to set a mail_location for SQL. This doesn't
> work:
>
> userdb {
> driver = sql
> args = /etc/dovecot/master-combined-sql.conf
> override_fields =
> mail_location=maildir:/fakedir/%d/%n:INBOX=/fakedir:LAYOUT=fs
> }
>
> Does anyone know the proper syntax?
http://wiki2.dovecot.org/AuthDatabase/SQL#User_database_lookups
It's the "mail" field. You configured the reverse case:
http://wiki2.dovecot.org/UserDatabase?highlight=%28override_fields%29
- --
Ste...
2014 Dec 01
2
[Bug 10977] New: Rsync path spoofing attack vulnerability (rsync 3.1.1 tested)
...Vulnerability Details :
Firstly,i write a following file into the shared folder in rsync:a true
folder
and a symbolic link are directed to the root directory .
[root at pentest rsync]# ls -lh
total 8.0K
-rw-r--r-- 1 root root 2 Oct 31 03:16 1.txt
lrwxrwxrwx 1 root root 6 Oct 31 05:09 fakedir -> /root/
drwxr-xr-x 2 root root 4.0K Oct 31 05:08 truedir
Then enter the truedir folder, create a new file name "pwned".
[root at pentest rsync]# cd truedir/
[root at pentest truedir]# ls
[root at pentest truedir]# echo rsync test > pwned
[root at pentest truedir]# ls -lh
to...
2012 Oct 10
1
Feature Request
It would be handy (for me) if there were a userdb where a directory
structure defined the db.
userdb stat {
mail_location=maildir:/fakedir/%d/%n:INBOX=/email/%d/%n:LAYOUT=fs
}
userdb stat {
mail_location=maildir:/email/%d/%n:INBOX=/email/%d/%n:LAYOUT=fs
}
The idea being that if the first directory doesn't exist then it will
try the second one.
2012 Oct 09
1
Multiple Maildir?
OK - Getting close to everything working in my weird configuration.
Here's a problem I'm still having.
I'm authenticating with this:
userdb {
driver = sql
args = /etc/dovecot/master-combined-sql.conf
}
Default mail location:
mail_location = maildir:/fakedir/%d/%n:INBOX=/email/%d/%n:LAYOUT=fs
However - what I'd like to do is if the mail location doesn't exist then
I want to try a second mail location:
mail_location = maildir:/email/%d/%n:INBOX=/email/%d/%n:LAYOUT=fs
How do I do that? Thanks in advance