search for: listnam

Displaying 20 results from an estimated 71 matches for "listnam".

Did you mean: listname
2014 Sep 12
2
sieve: is it possible to filter ALL mailing lists (with header List-Id) to their folders with ONE rule?
Hello, Dovecot. Is it possible to write one rule in sieve, which will: (1) Trigger on any message with "List-Id" header AND (2) Put this message to folder with name build from content of "List-Id" header, in such way, that message with List-Id List-Id: This is decription of list <list-name.host.org> will be put into folder "org.host.list-name" where
2008 Sep 10
2
comparing a list and vector and returnig the listname
hi, I have list of length 5453 and vector of length 14318.I need to compare the vector with the list and return the list name if matched.I am thinking of using an lapply but how to retrive the listname is wat i am puzzled abt. kindly let me know how to go abt it. Ramya -- View this message in context: http://www.nabble.com/comparing-a-list-and-vector-and-returnig-the-listname-tp19415038p19415038.html Sent from the R help mailing list archive at Nabble.com.
2007 May 14
2
Left/right hand side characters
Hello all Is there a way reducing the number of characters in a list so that just the left n numbers of characters is given? For example, If I have a list, listnames, which consists of 4 strings of 6 characters; >listnames [1] "item12" "item34" "item56" "item78" Is there a way to reduce this so only the 5 characters on the lefthand side are given (similar to the LEFT function in Excel) So that I'd ge...
2013 Nov 19
1
Quick question on sieve
...g-List:[ ]*)\/[-A-z0-9_+]+ * 9876543210^0 ^(List-Post:[ ]*(<mailto:)?|List-Owner:[ ]*(<mailto:)?owner-)\/[-A-Z0-9_+]+ * 9876543210^0 ^(Sender:[ ]*owner-|X-BeenThere:[ ]*|Delivered-To:[ ]*mailing list )\/[-A-Za-z0-9_+]+ * 9876543210^0 ^Sender:.* List"? <(mailto:)?\/[-A-Z0-9_+]+ { LISTNAME=$MATCH } Basically, it checks the headers for any one of the headers List-ID: List-Post: List-Owner: Sender: owner- X-BeenThere: Delivered-To: Sender:.*List and parses out the name of the list, writing it to the LISTNAME variable For the vast majority of mailing lists the message is then writ...
2010 May 20
1
use object within rda file in for loop
...uld like to process all the lists from all *.rda files that I have in one folder. Up to now, I can load all the *.rda files without any problem. The problem is when I want to access the list saved within each *.rda file (only one list per rda file). Here is my code: fpath <- "D:/R" listnames <- list.files(path=fpath, pattern=glob2rx("*.rda"), full.names=FALSE) for (i in 1:length(listnames)) { load(paste(fpath, listnames[i], sep="/")) z <- list_in_listnames[i] ## here is my problem **do something on z** } It might be really simple, but listnames i...
2010 Nov 10
0
Retrieve all names of nested list and index list based on these names
...ps through the individual branches via lapply() and came to find this to be pretty nasty to debug/manually test ;-). I think I found a acceptable implementation now and thought I'd share it in case someone is up to a similar task. Two function defs, then an example: ##### FUNCTION DEFS ##### listnames.get <- function( list.obj, do.basename=TRUE, do.name.chain=TRUE, ... ) { # VALIDATE if(!is.list(list.obj)) stop("Argument 'list.obj' must be a list.") # / #--------------------------------------------------------------------------- #...
2018 Feb 23
3
Remove "Duplicate" emails
...quest to remove ?duplicate? messages sent to both me and lists I subscribe to I came up with this, which I think should clean out my Archive folder, but I?ve been unable to get it to work for scanning all on my list-user email. $ doveadm -f table fetch -u kremels 'hdr.message-id guid uid hdr.x-listname' mailbox "Archive" | sort| awk 'cnt[$1]++{if (cnt[$1]==2) print prev[$1]; print} {prev[$1]=$0}' |grep -E "[0-9] +$" |awk '{print "doveadm expunge -u kremels MAILBOX-GUID "$2" UID "$3}? X-listname is a header that my list user applies to each...
2017 May 10
1
Dovecot/Sieve shortcuts?
...in particular, | the ordering) from, but I've been using the attached sieve script for a | while with numerous mailinglists. It uses the 'regex' module to parse | the mailing-list name from the headers (with various attempts to handle | most of the major mailing-list applications). The listname is | lower-cased (for consistency) and the message is filed into that folder (creating the folder if necessary). This means that, when I sign up for a new mailing-list, messages just start appearing in their own folder. | | -- | For more information, please reread.
2019 Feb 09
0
Use sieve to move all mail automatically based on List-Id
...use the following rule to automatically sort email into folders based on mailing lists: # split out the various list forms # Mailman & other lists using list-id if exists "list-id" { ??? if header :regex "list-id" "<([a-z_0-9-]+)[.@]" { ??????? set :lower "listname" "${1}"; ??????? fileinto :create "${listname}"; ??? } else { ??????? if header :regex "list-id" "^\\s*<?([a-z_0-9-]+)[.@]" { ??????????? set :lower "listname" "${1}"; ??????????? fileinto :create "${listname}"; ???????...
2012 Aug 08
1
Creating ToDo List App
Hi, New Rails user here trying to create a basic todolist app in rails 3.2.6 and running into some foreign key issues. Here''s what I did... I generated scaffolds list title:string & task description:text listname:string Next, in order to link the listname for Tasks and the list titles in the Lists I generated a migration file which looks like this class AddListIdToTasks < ActiveRecord::Migration def change add_column :tasks, :list_id, :integer end end I then added active record association ha...
2010 Nov 11
4
How to get a specific named element in a nested list
Hello, I have a nested named list structure, like the following: x <- list( list( list(df1,df2) list(df3, list(df4,df5)) list(df6,df7))) with df1...d7 as data frames. Every data frame is named. Is there a way to get a specific named element in x? so, for example, x[[c("df5")]] gives me the data frame 5? Thank you in advance! Best, Friedericksen
2015 Apr 07
2
Sieve, multiple addresses, and variables
..."*" {set "lopart" "${1}";} } else {set "lopart" "generic-list-box";} fileinto :create "ietf.${lopart}-in"; stop; } Now, this works, unless someone sends a To: line like this: To: ajs at crankycanuck.ca, listname at ietf.org The problem in that case is that you _do_ get a match, but the bit "if address :matches :localpart "to" "*" {set "lopart" "${1}";}" ends up putting this in a mailbox ietf.ajs-in, when what is the mailbox ietf.listname-in. I thought th...
1998 Sep 11
3
SAMBA digest 1809
> From: Gary Stainburn <gary.stainburn@ringways.co.uk> > To: "Samba Mailing List (E-mail)" <samba@samba.anu.edu.au> > Subject: smbtar multiple machines > Message-ID: <01BDDD6E.ABFF0580@garys.computer.leeds> > > Hi all, > > I'm just looking at using smbtar to backup the Win95 PC's on my network, and would like usability ideas please. >
2019 Jun 13
3
Sieve logging?
I am trying to create some sieve scripts to filter my mailing lists and am wondering if sieve logs anywhere, and it so where? I don?t see anything in mail.log beyond lines like: dovecot: lda(kremels at kreme.com)<39790><hNchChSkAV1umwAAIdGjjQ>: sieve: msgid=<267D5D71-D99C-4790-8706-C1A92BCC9F97 at kreme.com>: stored mail into mailbox ?INBOX' Which doesn?t really tell me
2015 Jul 28
1
[LLVMdev] [IMPORTANT] Mailing list Move & Downtime (Tuesday, August 4th)
On August 4th (~9AM PDT, exact time TBD), all LLVM related mailing lists will move to a new mailing list server and will change to listname at lists.llvm.org. LLVMDev will probably change to LLVM-Dev to preserve consistency. This means a couple of things: 1) All mailing lists will be down on August 4th. We anticipated at least the full day of downtime (hopefully less if things go well). 2) SVN access will be read only 3) Bugzilla wi...
2000 Aug 01
0
MDKSA-2000:028 kon2 update
...-discuss@linux-mandrake.com Linux-Mandrake''s security discussion mailing list. This list is open to anyone to discuss Linux-Mandrake security specifically and Linux security in general. To subscribe to either list, send a message to sympa@linux-mandrake.com with "subscribe [listname]" in the body of the message. To remove yourself from either list, send a message to sympa@linux-mandrake.com with "unsubscribe [listname]" in the body of the message. To get more information on either list, send a message to sympa@linux-mandrake.com with "info [listname]...
2013 Oct 02
1
Dovecot namespace solved while writing; preparing to refilter
Hi! My plea to readers: =================== Pls., people who only want strictly technical issues to read, and frown at any broader context regardless how intrinsically related, but not strictly technically related, it might be, skip all the way, all the way to, search for exact words: "strictly technical" or visually, find two lines of sole "===" characters. Thank you!
2003 Jul 16
2
list to data frame
...overflow error (Error: protect(): stack overflow). My list contains about 17000 rows and looks like shown at the bottom. The reason that I want to convert it in to a data frame is that I want to export it to a mysql database with the dbWriteTable function. The function that I use is As.data.frame(listname) I hope someone can help me Cut out from the list structure(list("-9.000000" = 187, "9754.000000" = 130, "9755.000000" = 129, "9756.000000" = 125.5, "9757.000000" = 118.1111, "9762.000000" = 132.6667, "9763.000000" =...
2019 Jun 13
4
Sieve logging?
...to", "envelope", "mailbox", "imap4flags" ]; # split out using list-id # List-Id: Dovecot Mailing List <dovecot.dovecot.org> if exists "list-id" { if header :regex "list-id" "<([a-z_0-9-]+)[.@]" { set :lower "listname" "${1}"; fileinto :create "${listname}"; } else { if header :regex "list-id" "^\\s*<?([a-z_0-9-]+)[.@]" { set :lower "listname" "${1}"; fileinto :create "${listname}";...
2000 Jul 11
0
MDKSA-2000:018 dump update
...urity-discuss@linux-mandrake.com Linux-Mandrake's security discussion mailing list. This list is open to anyone to discuss Linux-Mandrake security specifically and Linux security in general. To subscribe to either list, send a message to sympa@linux-mandrake.com with "subscribe [listname]" in the body of the message. To remove yourself from either list, send a message to sympa@linux-mandrake.com with "unsubscribe [listname]" in the body of the message. To get more information on either list, send a message to sympa@linux-mandrake.com with "info [listname]...