Displaying 2 results from an estimated 2 matches for "136405".
Did you mean:
13640
2008 Nov 26
3
v1.2Autocreate
Hi Timo,
a setup like
http://wiki.dovecot.org/Plugins/Autocreate
seems not to work
the module is loaded but no subfolder creation at login
happens, sorry no log about failures with it
simply
Module loaded: /usr/lib/dovecot/modules/imap/lib20_autocreate_plugin.so
should i try
i.e
autocreate = ".Trash/"
or is there more info around
--
Best Regards
MfG Robert Schetterer
2008 Oct 04
3
environment and scoping
I haven't quite figured out how I can change the environment of a function.
I have a main function and want to use different auxillary functions, which I supply as parameter (or names). What I want to do is something like this:
main.fun=function(aux.fun,dat){
x <- 1
fun.dat()
}
aux.fun.one=function(){
mean(dat)+x
}
aux.fun.one=function(){
median(dat)-x
}
I don't want to