similar to: dsync multiple mailboxes per connection?

Displaying 20 results from an estimated 600 matches similar to: "dsync multiple mailboxes per connection?"

2005 Sep 14
13
table sorting/manipulation library?
I have a library I''ve developed that I believe is the most flexible and useful table sorting/striping/row-selecting library around. Big features: Single and multiple-level sort Arbitrary sort criteria (IP address, date, etc.) Works with table headers that are > 1 row or column large Stripe tables and/or enable row selecting Row selecting supports drag-select and SHIFT-click No extra
2018 May 01
2
OCSP Stapling and Certificate Transparency
Hi, For CAs that do not include a signed certificate timestamp in their newly-issued certificates, does Dovecot support either OCSP stapling or the Certificate Transparency TLS extension? If the TLS extension is supported, how does the admin configure the timestamp for each certificate? I?m wondering if any MUAs will follow Google?s lead and insist on CT. Thank you! -Felipe Gasper
2020 May 26
2
doveadm: extra lines?
Hello, I?m sending doveadm ?kick? commands to doveadm-server via the doveadm protocol. When ?kick? sends back a NOTFOUND error, though, it?s sending back additional output. strace shows: write(3<UNIX:[3158354->3156665]>, "\t\tkick\tmyssltest\n", 17) = 17 ... read(3<UNIX:[3158354->3156665]>, "\n-NOTFOUND\n\n-\n", 8192) = 14 Going by the protocol
2018 Oct 31
1
OCSP Stapling and Certificate Transparency
On 05/01/2018 09:08 AM, Aki Tuomi wrote: > >> On 01 May 2018 at 19:03 Felipe Gasper < felipe at felipegasper.com >> <mailto:felipe at felipegasper.com>> wrote: >> >> >> Hi, >> >> For CAs that do not include a signed certificate timestamp in their >> newly-issued certificates, does Dovecot support either OCSP stapling >> or the
2020 May 24
2
missing man page for “doveadm dsync-server”?
Hello, Is there a man page for this command? I don?t see one in the repository. Given its utility in, e.g., syncing mailboxes via SSH, it seems like documentation for this command would be useful? Thank you! -Felipe Gasper
2020 May 20
1
Re: dsync “destination” argument
> On May 20, 2020, at 10:46 AM, Sami Ketola <sami.ketola at dovecot.fi> wrote: > >> On 16. May 2020, at 3.46, Felipe Gasper <felipe at felipegasper.com> wrote: >> >> Hello, >> >> Some code that I didn?t write but am maintaining passes a local script?s path as dsync?s ?destination? argument, like so: >> >> dsync -D -u john -v backup
2019 Jan 15
2
doveadm neglecting to exit in failure?
----- cpssltest at cpanelssltest.org [/usr/local/cpanel]# doveadm -v expunge -u cpssltest -- mailbox-guid b8a359119e771b58484a0000a841250d savedbefore 365days; echo $? doveadm(cpssltest): Error: net_connect_unix(/var/run/dovecot/stats-writer) failed: Permission denied 0 ----- ^^ In the above, shouldn?t the ?doveadm? command have exited nonzero to indicate a failure to connect? Thanks! -Felipe
2020 May 16
2
dsync “destination” argument
Hello, Some code that I didn?t write but am maintaining passes a local script?s path as dsync?s ?destination? argument, like so: dsync -D -u john -v backup -R -1 "/code/dsync_client.pl" 127.0.0.1 john at mydomain.org dsync_client.pl establishes a TCP connection with a remote dsync process then acts as a proxy between the two dsync processes. ?127.0.0.1? and ?john at mydomain.org?
2016 Jun 21
2
Pluggable SNI?
Hello, How feasible would it be to have a ?pluggable? Dovecot setup that would permit arbitrary logic for fetching TLS/SNI certificates and key, rather than having to hard-code each domain?s resources in a configuration file? A couple scenarios that I envision such a framework being able to accommodate: 1) An internal TLS service that accepts queries via a UNIX socket by domain name and
2020 Sep 28
1
custom userdb server, Exim, and proxying
Hi all, We have Exim using Dovecot for authentication. Dovecot, in turn, consults a custom internal server that answers Dovecot?s userdb queries. When IMAP connections arrive, for some users we want to forward those connections--without authentication--to an external IMAP server. For these users, we return ?proxy_maybe? and ?nopassword? in the authn response from our userdb server. This tells
2018 Aug 24
1
HTTP API vs. doveadm
To follow up on an earlier thread: is there any functional advantage of the new HTTP API over the doveadm API? How does the HTTP API deal with a query like ?mailbox list?, which (as best I can tell) could return non-UTF8 text? -FG
2010 Apr 09
5
SSH Through R Script
Hi, I am trying to SSH to a remote server through R script. In other words, I would like to know how I can get a SSH connection to the remote server and then execute commands on that server with the R script. So in bash, I would normally type ssh -lusername remoteserver.com; press enter and then wait for the password prompt to key in my password. I have tried system("ssh
2010 Apr 16
2
rsync over ssh - possible attack vectors
Hello everybody! First my setup: I connect from Debian Lenny to Ubuntu Karmic with a command like: user1 at localserver:$ rsync -rtcve ssh user1 at remoteserver:/.../ /local/.../ (using default versions of ssh and rsync in the vendor repos, ssh with password authentication) As far as I understand if localserver got compromised an attacker could read the password and then get full access to
2005 Mar 11
1
name of object from character vector
Hello everyone! A simple question (I'm not sure about the answer): How can I give a name to my data.frame from a character vector of names? For example, each data.frame is a table of results for a subject and I have a vector of subject names like b <- c("math", "geography", "history") How do I create a data.frame named "math" by calling b[1]?
2005 Sep 22
1
Noob help with backup command syntax
Hi guys: I'm new to rsync. I have downloaded and read sevral how-to snippits, and the man pages. I got a little confused though trying to figure out how to do what I need. Can someone show me the syntax for doing the following:? Given: localserver = server that has data I want backed up, and I'm logged in as root on it remoteserver = server where the data is to go, into it's
2007 Nov 21
2
Color coding
I'm probably not the first with this idea so I guess that there's a complex issue behind it but since I couldn't find an answer I just though to ask: Wouldn't it be nice to have color coded objects as output of ls() statement? Functions of one color and rest with other (at least). So when I issue an ls() I could visually discern different types of objects. I often find myself
2006 Feb 22
4
issue with plot (type="h")
Hello everyone. For reasons too long to explain I wanted to do plots similar to histograms with plot(type="h"). I ran into a problem - if I set line width too high, histogram isn't accurate anymore. For example: par(lend=2) plot(c(2,4,3,2),ylim=c(0,5), type="h") abline(h=3) Column 3 appears just as high as it should. But if I do par(lend=2)
2019 Mar 12
6
“doveadm mailbox” command fails with UTF-8 mailboxes
Hello, I?ve got a strange misconfiguration where the following command: doveadm -f pager mailbox status -u spamutf8 'messages vsize guid' INBOX 'INBOX.*' ? fails with error code 68, saying that it can?t find one of the mailboxes. (It lists the user?s other mailboxes.) The name of the mailbox in question is saved to disk in UTF-8 rather than mUTF-7, but strace shows that doveadm
2016 Nov 10
4
lazy-load SNI?
Hello, We?re rolling out large SNI deployments for our mail servers. Each domain gets an entry like this in the config: local_name mail.foo.com { ssl_cert = </ssl/domain_tls/*.foo.com/combined ssl_key = </ssl/domain_tls/*.foo.com/combined } There are a couple problems we?re finding with this approach: 1) Dovecot wants to load everything at once, which has some machines taking
2005 Oct 20
3
[PATCH]Cannot send special keys, such as Ctrl+Alt+Del
Here is the patch useful to send special keys that your graphical user interface intercepts at low level, such as ctrl-alt-del in X Window. This patch adds a command "sendkey" to deal with it in the monitor, you can send keys to the vm. Use - to press several keys simultaneously. Example: sendkey ctrl-alt-f1 Signed-off-by: Dan Xu <dan.d.xu@intel.com> Signed-off-by: