search for: virtual

Displaying 20 results from an estimated 58518 matches for "virtual".

2018 Mar 01
2
Virtual question
?For each virtual directory you need to create a dovecot-virtual file. Its syntax is like:? OK, where does this file get created? Say I want the users to have a virtual mailbox that is messages received in the last month, does that file go into each user' s Maildir path? It sounds like I have to create a virt...
2018 Mar 02
2
Virtual question
Hello, Can you elaborate? Thanks. Dave. On 3/1/18, Aki Tuomi <aki.tuomi at dovecot.fi> wrote: > You can also use > namespace virtual > {?location=virtual:/etc/dovecot/virtual:INDEX=~/virtual/:CONTROL=~/virtual/....} > so you put the folder definitions under /etc and per-user indexes end up > under user home.?---Aki TuomiDovecot oy > -------- Original message --------From: LuKreme <kremels at kreme.com> Date: &g...
2017 Dec 11
2
[lld] bug detecting undefined symbols in shared libraries
I have a test case where lld-5.0 fails to detect an undefined symbol (this bug also happens with clang/lld 4.0). I haven't narrowed down exactly all the circumstances when this can occur, but in this case it was for a virtual method in a class defined in a shared library. If I build the executable with the raw object files, the linker notices the missing method (see test1 vs test2). This was tested on Ubuntu 14.04 using the llvm/clang-5.0 downloaded from the official apt repository. If I use gold (from binutils 2.26)...
2016 Dec 14
2
Virtual POP3 namespaces and quota-status
Hi, I've tried to do configure Virtual POP3 INBOX (dovecot version 2.2.18) as explained here http://wiki.dovecot.org/Plugins/Virtual with a static userdb and nopassword=y so I dont have any database on the dovecot server without the possibility to distinguish POP3 or IMAP in the userdb extra field to change the namespace on the fly. So...
2019 Dec 17
1
Is there a way to hide the top level virtual IMAP folder when using the virtual plugin?
I'm experimenting with the Virtual plugin to give users access to folders like "All Mail", "Recent" and so on, similar to Gmail. Something like this works properly: mail_location = maildir:~/ namespace { inbox = yes location = prefix = INBOX. separator = . type = private } namespace...
2018 Mar 02
0
Virtual question
So. Under /etc/dovecot/virtual you create the virtual folder structure you want, and put the dovecot-virtual files under those folders. such as /etc/dovecot/virtual/month/dovecot-virtual Then in dovecot.conf you put namespace virtual { location = virtual:/etc/dovecot/virtual:INDEX=~/virtual:CONTROL=~/virtual # change th...
2019 Jun 18
0
Problem syncing e-mails with Outlook
...I see all the e-mails listed. However, when I connect outlook, it does not sync all these e-mails. I am seeing the errors below. Not sure how to fix that. Jun 18 11:23:34 imap(technical at mydomain.co.ke)<59754><g5UC1JSLPhkpUFt/>: Error: Corrupted record in index cache file /var/spool/virtual/ mydomain.co.ke/technical/mdbox/mailboxes/INBOX/dbox-Mails/dovecot.index.cache: UID 29: Broken virtual size in mailbox INBOX: read(/var/spool/virtual/ mydomain.co.ke/technical/mdbox/storage/m.1): FETCH BODY[] got too little data: 131524 vs 772408 Jun 18 11:23:45 imap(sales at mydomain.co.ke)<59...
2018 Mar 02
2
Virtual question
On Mar 1, 2018, at 22:35, Aki Tuomi <aki.tuomi at dovecot.fi> wrote: > > Under /etc/dovecot/virtual > > you create the virtual folder structure you want, and put the dovecot-virtual files under those folders. > > such as > > /etc/dovecot/virtual/month/dovecot-virtual > > Then in dovecot.conf you put > > namespace virtual { > location = virtual:/etc/dovecot/...
2019 Jun 19
1
Problem syncing mail with IMAP
...am seeing the following errors in my logs, which I believe are preventing Outlook from syncing. How do I solve these? Can I just delete the index.cache?? Jun 18 11:23:34 imap(technical at mydomain.co.ke)<59754><g5UC1JSLPhkpUFt/>: Error: Corrupted record in index cache file /var/spool/virtual/ mydomain.co.ke/technical/mdbox/mailboxes/INBOX/dbox-Mails/dovecot.index.cache: UID 29: Broken virtual size in mailbox INBOX: read(/var/spool/virtual/ mydomain.co.ke/technical/mdbox/storage/m.1): FETCH BODY[] got too little data: 131524 vs 772408 Jun 18 11:23:45 imap(sales at mydomain.co.ke)<59...
2009 Apr 28
3
Virtual mailbox plugin, 4 days of struggling
Hello, I finally got an INBOX to work, but is virtual mailbox plugin only meant to create a virtual inbox, or should I be able to have an Allmails virtual folder that is viewable in my imap client? if ~/virtual/ is my location, would I create an Allmails directory in the virtual/ or virtual/INBOX/Allmails. Im fairly confused on how this is suppose to...
2017 Dec 12
3
[lld] bug detecting undefined symbols in shared libraries
...s/ignore-in-shared-libs. It seems that lld is implementing --allow-shlib-undefined (test1 builds, test2 fails to build). Is it possible for lld to implement --[no-]allow-shlib-undefined to switch the behavior for undefined symbols in shared libraries? $ make clean && make -k rm -f main.o virtual.o virtual.so test1 test2 clang++-5.0 -fPIC -c main.cc clang++-5.0 -fPIC -c virtual.cc clang++-5.0 -fPIC -fuse-ld=gold -Wl,--allow-shlib-undefined -shared -o virtual.so virtual.o clang++-5.0 -fPIC -fuse-ld=gold -Wl,--allow-shlib-undefined -Wl,-R$ORIGIN. -o test1 main.o virtual.so clang++-5.0 -fPIC -...
2019 May 01
2
Understanding virtual mailboxes (examples in 15-mailboxes.conf)
The examples in 15-mailboxes.conf # If you have a virtual "All messages" mailbox: #mailbox virtual/All { # special_use = \All # comment = All my messages #} # If you have a virtual "Flagged" mailbox: #mailbox virtual/Flagged { # special_use = \Flagged # comment = All my flagged messages #} They seem to ref...
2018 Mar 06
4
Virtual Mailboxes redux
I?ve created virtual mailboxes in dovecot, and they show up in various clients, but the folders contain no messages. (I will get an ?empty? folder icon named ?@virtual? and an empty folder icon named ?month? inside it. Is there a way I can verify what dovecot THINKS should be in the virtual folder via doveadm? <ht...
2013 Oct 01
2
[LLVMdev] JITMemoryManager
...project it could be maintained in one place with no ifdefs. If the LLVM maintainers don't want it, I also have a patch to allow subclassing DefaultJITMemory manager. Would that be more agreeable? Thanks. class DelegatingJITMemoryManager : public llvm::JITMemoryManager { protected: virtual llvm::JITMemoryManager *mgr() const = 0; public: /* * From JITMemoryManager */ virtual void setMemoryWritable() { return mgr()->setMemoryWritable(); } virtual void setMemoryExecutable() { return mgr()->setMemoryExecutable(); }...
2011 Dec 23
2
2.1.rc1 (056934abd2ef): virtual plugin mailbox search pattern
Hello Timo, With dovecot 2.1.rc1 (056934abd2ef) there seems to be something wrong with virtual plugin mailbox search patterns. I'm using a virtual mailbox 'unread' with the following dovecot-virtual file $ cat dovecot-virtual * unseen For testing propose I created the following folders with each containing one unread message INBOX, INBOX/level1 and INBOX/level1/level2 2...
2010 Nov 10
1
Dovecot 2.0.7 Virtual plugin
Well, it seens the virtual plugins is not working correctly or i miss undertood how to configurate it. http://wiki2.dovecot.org/Plugins/Virtual as this wiki says, I should be possible to make an ndeamespace namespace { prefix = virtual/ separator = / location = virtual:~/Maildir/virtual } And in side of ~/Maildi...
2017 Nov 27
2
lmtp-Eroor
...>> >>>> dovecot[23202]: lmtp(jakob): Debug: Mailbox <lmtp DATA>: Opened mail >>>> UID=1 because: header Message-ID (Cache file is unusable) >>>> dovecot[23202]: lmtp(jakob): Debug: Mailbox <lmtp DATA>: Opened mail >>>> UID=1 because: virtual size (Cache file is unusable) >>> These are debug messages. The incoming LMTP DATA stream is a raw >>> message, which has no cache (hence 'Cache file is unusable'). This is >>> normal. >> Ok. I did a lot of debugging the last weeks for another bug. But I'...
2014 Mar 12
2
OT: missing /dev paths
...g google but not finding any options. Is there any way to fix missing /dev paths to luns without rebooting? For example, see the output from lsscsi below. The only way I know to fix this is with a reboot, but I REALLY Need to avoid that if possible. Thanks James [2:0:1:150] disk DataCore Virtual Disk DCS - [2:0:1:151] disk DataCore Virtual Disk DCS - [2:0:1:152] disk DataCore Virtual Disk DCS - [2:0:1:153] disk DataCore Virtual Disk DCS - [2:0:1:154] disk DataCore Virtual Disk DCS /dev/sdic [2:0:1:155] disk DataCore Virtual Disk DCS -...
2019 Jan 02
2
Error with virtual index "Broken mailbox_count header"
Hi, we experience trouble with one of our virtual mailboxes. dovecot-virtual: ` * -INBOX/Trash -INBOX/Spam all ` Error log: ```Error: virtual index /var/vmail/mailboxes/kirchhofer.net/tobias/virtual/all: Broken mailbox_count header``` This happens only with the filter form above. All other virtual mailboxes works fine. Jakobus Sch?rz...
2016 Dec 23
0
Virtual POP3 namespaces and quota-status
...n, Le Wednesday 14 December 2016 ? 12:42, Aur?lien Beaujean ?crivait: > Any idea before I will patch some piece of code to disable the unique > restriction of inbox namespace ? I've found a way to address my problem, using the %s (protocol) in the configuration file, as this: namespace virtual { hidden = yes inbox = yes list = no location = virtual:/etc/dovecot/virtual/%s:INDEX=MEMORY prefix = virtual/ separator = / } With 2 different pop3 / imap dovecot-virtual files: # cat /etc/dovecot/virtual/imap/INBOX/dovecot-virtual !RealMails/INBOX all # cat /etc/dovecot/virtual/...