Displaying 8 results from an estimated 8 matches for "whitesmith".
Did you mean:
whitesmiths
2010 Jul 28
1
Looking for a Plug-In developer
...h a simple proposal.
We will require the source code and copyright assignment.
Regards
John
------------------------------------------------------------------
John O'Brien Tel: +61-(0)2-9114-8200
Managing Director Fax: +61-(0)2-9114-8201
Whitesmiths Pty Ltd Mobile: +61-(0)4-1462-7436
john at whitesmiths.com
2005 Feb 08
1
Strange parsing behavior of an else condition
Dear R users,
can anybody explain the reason, why the first piece of code
below gives a parsing error, while the other two variations
work?
# Gives a parsing error
x <- 1
if (x < 0)
{
y <- 1
}
else # Error occurs at this line
{
y <- -1
}
# This works
x <- 1
{
if (x < 0)
{
y <- 1
}
else
{
y <- -1
}
}
# This works too
x
2010 Jul 30
1
Debugging Plug-In
Hi,
I'm very new to Dovecot plug-in development.
Is there a simple way to do so some simple logging.
I want and equivalent of printf to be able stick strings in /var/log/maillog.
Regards,
John
2010 Aug 03
1
Passing Arguments to Plugin
Guys,
Making progress on my plugin to support the custom IMAP command required by a special embedded system.
Have been looking through the documentation to see if it is possible to pass parameters down to a plugin through the dovecot.conf
So is there a simple way?
Regards,
John
2010 Aug 03
1
Updating Database records from a Plugin
Guys,
In the file /etc/dovecot-pgsql.conf I have
driver = pgsql
connect = host=localhost dbname=ivr.db user=ivr password=passwd
default_pass_scheme = PLAIN
password_query = SELECT password FROM embedded_device WHERE username='%u'
user_query = SELECT home, uid, gid FROM embedded_device WHERE username='%u'
In the table embedded_device there is a field called
2010 Aug 27
1
Is there a way to catch mailbox and message flag changes?
Guys,
We have been trying to establish if there is a way to get some type of notification from Dovecot when a message is appended to a mailbox or when a message has its flags updated.
These are the 2 use cases:
A message is appended to the mailbox "/Watch", we want to trigger "processing" of the message immediately it arrives.
A message in the "Inbox" has its status
2010 Aug 01
2
error 89 when loading plugin
Hi,
I'm very confused - that's not too difficult for me.
I have written a small plugin change_passwd_plugin.c
I would like this custom IMAP command to be available to all users.
The code contains the following.
void change_passwd_plugin_init(void)
{
command_register("XCHANGEPASSWORD", cmd_xchangepasswd, 0);
str_append(capability_string, " XCHANGEPASSWORD");
2011 Jul 27
0
Problem with client login in 1.2.17
Hi,
I have been using CentOS 5.5 with Dovecot 1.0.7.
My client apps login with TLS/SSL using an postgres database for username and password authentication.
I developed a plugin that added an additional IMAP command.
I want to eventually migrate to release 2.0 but have decided to make this a two step process.
I have started with 1.2.17 as I hope this would be a smaller step along the way.
I have