Victor Duchovni wrote:
On Wed, Oct 01, 2008 at 09:35:04PM +0200, mouss wrote:query = select %s from yourvirtualmailboxtable where '%s' = emailThe first "%s" should probably also be in quotes or better yet, use the field name: query = select '%s' from yourvirtualmailboxtable where '%s' = email query = select email from yourvirtualmailboxtable where '%s' = email
indeed!