Displaying 20 results from an estimated 500 matches similar to: "Group emails based on custom header"
2010 Nov 24
2
Change the class of columns in a data frame
Hi.
First of all, excuse me if I do any mistakes, but English is not a language
I use very often.
I have a data frame with numbers. A small part of the data frame is this:
nominal ordinal
2 2
2 1
2 1
2 2
So, I want to use the gower distance function on these numbers.
Here (
2009 May 11
1
Sieve & Regex
Hi all
I'm trying to create a new sieve rule.
What I would like to do is catch "From" addresses that
are equal to the rightpart (hostname) of a message-id.
For example:
Message-ID: <000d01c9d23a$941a7db0$6400a8c0 at upwabm>
From: "Leanne Crabtree" <upwabm at blomberg-co.com>
I would like to catch this mail, because it has
"upwabm" on the right part
2016 Sep 06
3
sieve - find in header
Hello list,
have a problem with sieve script. I want to perform an action if an
arbitrary headerline contains a defined string.
I tried with regex:
if header :regex [".*"] ["searchstri.*"]
{
fileinto "junk";
}
This is not working because regex is only used in 2nd argument
["searchstri.*"]
In 1st argument [".*"] no regex is used, sieve
2016 Mar 15
2
dsync and ProxyAUTH
Hi,
can i use dync to migrate a mailboxes through PROX-AUTH?
Could It be an attractive feature for you?
Thanks
2012 Jun 11
1
[LLVMdev] include files
The LLVM Coding Standards discuss include files at some length.
Suggests that the minimal list of includes be listed.
Experimenting, I find the list is much shorter that used by most passes,
perhaps only 3 or 4 files, probably because the necessary declarations
are included indirectly. For example, I might get away with
a .h file including only
#include "llvm/Analysis/AliasAnalysis.h"
2009 Apr 28
3
Virtual plugin - [SERVERBUG] BUG: Unknown internal error
/etc/dovecot/virtual/Inbox2/dovecot-virtual
*
-Trash
-Trash/*
-Deleted*
-Junk*
inthread x-references2 x-mailbox INBOX
Using php to connect o {host}virtual/Inbox2 gives me [SERVERBUG] BUG:
Unknown internal error. If I connect to virtual/Allmail which has
"all" instead of the inthread line it works.
2017 Jun 23
1
setReplaceMethod creates 'object' in the userworkspace
Hi,
I recognized that the function 'setReplaceMethod' is creating a
character vector in the user workspace having the name (e.g. "newClass")
of the class used as value. If you can sort out a mistake by myself, I
would like you to file a bug report.
BBFN,
Jonathan
setClass("newClass", representation(value="numeric"))
setMethod(f = "initialize",
2017 Jun 23
1
setReplaceMethod creates 'object' in the userworkspace
Hi,
I recognized that the function 'setReplaceMethod' is creating a
character vector in the user workspace having the name (e.g. "newClass")
of the class used as value. If you can sort out a mistake by myself, I
would like you to file a bug report.
BBFN,
Jonathan
setClass("newClass", representation(value="numeric"))
setMethod(f = "initialize",
2012 Jan 19
1
dataframe: how to select an element from a row
Hi,
I 'd like to select the Date where myvalue =1800 appears the* first time*.
For instance:
df =data.frame(date, myvalue, ...)
...
Date myvalue
2012-01-05 2500
2012-01-06 2450
*2012-01-07 1800*
2012-01-08 2200
2012-01-09 1800
I'd like to retrieve the third line.
I do
2020 Jun 12
0
How to change SIP header TO: ?
Hello friends.
I have a softswitch in which I cannot create a list of blocked source
numbers; So, I have thought to use Asterisk and return a 302 message
when the number can make the call, my dialplan is as follows:
[from-external]
exten => _AX.,1,Verbose(=======> ${CALLERID(num)} to ${EXTEN})
same => n,Set(MYDESTINY=${REPLACE(${EXTEN},A,)})
same =>
2011 Sep 15
1
dovecot-virtual folder configuration
Hi all,
Long story short, I'd like to configure a folder containing:
INBOX
(some other folders)
-> unseen emails from these folders + all other emails (also seen) from
the same thread
-> seen emails from these folders, but only the recent ones + all other
emails from the same thread
I tried:
# inthread refs (or (or recent unseen) recent )
inthread refs unseen
# inthread
2018 Feb 17
4
2.2.33.2 - Virtual Mailbox Issue bug maybe ?
Been experimenting with virtual mailbox and have a question :-
I have defined 2 virtual mailboxes 'all' and 'combined' as follows ...
virtual/all/dovecot-virtual
virtual/combined
inthread refs x-mailbox INBOX
virtual/combined/dovecot-virtual
!INBOX
INBOX/Sent
INBOX/Drafts
all
When new mail comes I would assume that both virtual mailboxes should
actually see the message
2005 Aug 04
4
An small suggestion for the R team
Hi all,
I would like to suggest that all R functions/etc like:
codes-deprecated
grid-internal
ns-alt
ns-dblcolon
ns-hooks
ns-internals
ns-lowlev
ns-reflect.Rd
tools-internal
ts-defunct
utils-deprecated
utils-internal
... and another
i.e, function/word separate for '-'
were all substituted by
codes_deprecated
grid_internal
ns_alt
2010 Jan 15
2
[LLVMdev] [PATCH] - Union types, attempt 2
On 01/15/2010 11:37 AM, Talin wrote:
> Yes, that's closer to the frontend semantics: the variants of a
> union type don't have any natural ordering, so list semantics could
> cause problems.
I agree. I probably shouldn't even comment, as I know so little about
LLVM. But I've hand-written a couple kLOC of IR now and am starting to
get a feel for the
2016 Dec 28
2
expunging all mailboxes
Evidently, the 'doveadm expunge' command requires a "mailbox" to be defined
in the search string.
But is there a way tell it all mailboxes for a user? For example, something
like:
doveadm expunge -u user at domain mailbox ALL savedbefore 30d
Thanks,
Michael
2009 Oct 13
2
Error: NO Mailbox is locked
Hi to all,
i migrate an imap server from courier-imap to dovecot 1.1.13. After the
migration i have often this error in imap communication:
* NO Mailbox is locked, will abort in 122 seconds
* NO Mailbox is locked, will abort in 92 seconds
* NO Mailbox is locked, will abort in 62 seconds
* NO Mailbox is locked, will abort in 32 seconds
I use maildir and all data are in nfs server.
My dovecot
2012 Nov 30
5
subset data frame by variable with missing value
Hello,
I have a variable in a data frame that contains NA values. I just want to
subset so that I get the obs where that variable is missing.
In SAS I would do:
data missing;
set test;
if myvalue=' ';
run;
How can I perform this simple task in R?
Thanks in advance for your help.
--
View this message in context:
2015 Feb 17
2
Help with archive server
Hi,
I want to build a system where 6 months old mail to be moved to
archive server to keep my mailbox clean and fast.
Is there any way to achieve the same using any pre-built binary shipped
with dovecot ?
Thanks and Regards
Joy
2008 Sep 05
4
v1.2.alpha1 released
http://dovecot.org/releases/1.2/alpha/dovecot-1.2.alpha1.tar.gz
http://dovecot.org/releases/1.2/alpha/dovecot-1.2.alpha1.tar.gz.sig
This is the only v1.2.alpha announcement I'm going to send to
dovecot-news list. Next announcement will be for either v1.2.beta1 or
v1.2.rc1.
I'm hoping that v1.2 stabilizes pretty soon. There are no huge changes
like there were in 0.99->1.0 or
2008 Sep 05
4
v1.2.alpha1 released
http://dovecot.org/releases/1.2/alpha/dovecot-1.2.alpha1.tar.gz
http://dovecot.org/releases/1.2/alpha/dovecot-1.2.alpha1.tar.gz.sig
This is the only v1.2.alpha announcement I'm going to send to
dovecot-news list. Next announcement will be for either v1.2.beta1 or
v1.2.rc1.
I'm hoping that v1.2 stabilizes pretty soon. There are no huge changes
like there were in 0.99->1.0 or