[PHP] imap_set_quota() function

2003-10-29 Thread dimon
Hello, I asked that question a week ago but didn't get any response. So I'll try again :-) I'm trying to use PHP's imap_set_quota() function to manage user's quotas. I can set user's quota to 0 with: imap_set_quota($mbox, user/afif, none); or imap_set_quota($mbox, user/afif, 0); And for sure I

[PHP] imap_set_quota() function

2003-10-24 Thread dimon
Hello, I'm trying to use PHP's imap_set_quota() function to manage user's quotas. I can set user's quota to 0 with: imap_set_quota($mbox, user/afif, none); or imap_set_quota($mbox, user/afif, 0); And for sure I can set user's quota to any other value 0 But when I'm trying to delete quota (set

[PHP] imap_set_quota function

2002-12-29 Thread Roger Thomas
an excerpt from php man pages says that: This function requires the imap_stream to have been opened as the mail administrator account. It will not work if opened as any other user. ... ... $mbox = imap_open ({your.imap.host:143}, mailadmin, password); my question is, where do i set this admin

Re: [PHP] imap_set_quota function

2002-12-29 Thread Michael Sims
On Sun, 29 Dec 2002 18:26:01 -0800 (PST), you wrote: This function requires the imap_stream to have been opened as the mail administrator account. It will not work if opened as any other user. [...] my question is, where do i set this admin called 'mailadmin' with password 'password'. do i set it