<br><br><div><span class="gmail_quote">On 3/1/07, <b class="gmail_sendername">Timo Sirainen</b> &lt;<a href="mailto:tss@iki.fi">tss@iki.fi</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Thu, 2007-03-01 at 20:29 +0800, Abu Gid wrote:<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; You&#39;ll have to make your userdb return<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;quota=dirsize:storage=123456&quot;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setting for different users. What userdb do you use? http://
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://wiki.dovecot.org/Quota">wiki.dovecot.org/Quota</a> shows some examples for SQL/LDAP.<br>&gt;<br>&gt;<br>&gt; The problem is I don&#39;t use any userdb, only use the passdb_pam.<br><br>You do use a userdb. Most likely passwd. Otherwise you couldn&#39;t log in
<br>at all.<br><br>&gt; So, do I have to use userdb to authenticate users? or can I just use<br>&gt; any userdb for the quota part only. If that is so how can I set up the<br>&gt; db config? search the <a href="http://wiki.dovecot.org/Quota">
wiki.dovecot.org/Quota</a> but could not find any<br>&gt; config that suit my current config ,that&#39;s why I plan to use the dict<br>&gt; server. Thanks again.<br><br>You&#39;ll still have the exact same problem with dict, since you&#39;d still
<br>have to set the quota from the userdb.<br><br>There&#39;s an alternative way you could do with<br><a href="http://wiki.dovecot.org/PostLoginScripting">http://wiki.dovecot.org/PostLoginScripting</a>, for example (just the
<br>simplest script I could think of):<br><br>#!/bin/sh<br><br>quota=/etc/dovecot-quota/$USER<br>if [ -f $quota ]; then<br>&nbsp;&nbsp;export QUOTA=dirsize:storage=`cat $quota`<br>fi<br><br>exec /usr/local/libexec/dovecot/imap</blockquote>
<div><br>Have done that .&nbsp; What should I put in the plugin {}.<br>Should it be : <br><pre>quota = dirsize:storage=10240 or <br>quota = $QUOTA<br></pre>Sorry, I&#39;m a bit of newbie at this.<br>&nbsp;-- azhar --<br>&nbsp;<br></div>
<br></div><br>