Displaying 10 results from an estimated 10 matches for "t_end".
Did you mean:
_end
2011 Feb 22
0
Problem with forward prediction using StructTS output
I am having problems with forward prediction using the output of the
Basic Structural Model from StructTS. The following snippet
illustrates the problem:
t_end <- 139
nahead <- 20
data(AirPassengers)
ap <- log10(AirPassengers)-2
fit <- StructTS(ts(ap[1:t_end], freq=12), type="BSM")
p <- stats:::predict.StructTS(fit, n.ahead=nahead)
plot(1:t_end, ap[1:t_end], xlim=c(0,t_end+nahead), type="l", ylim=c(0,1.2))
points((t_end+...
2011 Mar 25
1
Ignored proxy_maybe var and no local login when "host = Proxy FQDN"
...tmp, "destuser=", 9) == 0)
destuser = *tmp + 9;
}
if (host == NULL || net_addr2ip(host, &ip) < 0) {
/* broken setup */
T_BEGIN {
i_debug("BROKEN SETUP %s", host);
} T_END;
return FALSE;
}
if (!net_ip_compare(&ip, &request->local_ip)){
T_BEGIN {
i_debug("%s", "IPS NOT EQUAL");
}T_END;
return FALSE;
}
if (port != NULL...
2010 Sep 06
1
Plugin execution order and Sieve
...cution with :
---
dovecot-2-0-pigeonhole-d51650c8af85/src/plugins/lda-sieve/lda-sieve-plugin.c.next_deliver
2010-08-23 19:26:12.000000000 +0200
+++
dovecot-2-0-pigeonhole-d51650c8af85/src/plugins/lda-sieve/lda-sieve-plugin.c
2010-09-02 11:48:22.000000000 +0200
@@ -775,7 +775,8 @@
} T_END;
- return ret;
+ //return ret;
+ return next_deliver_mail(mdctx,storage_r);
}
/*
With this patch, my plugin is called, but, always AFTER Sieve...
How can I call my plugin before Sieve and do I need to patch Pigeonhole
Sieve ?
Thank you,
Charly.
2009 Nov 02
2
dovecot-1.2.6: Panic: pool_data_stack_realloc(): stack frame changed
When playing with large numbers of IMAP keywords on dovecot-1.2.6 imap
crashed:
Panic: pool_data_stack_realloc(): stack frame changed
Looks like either maildir_file_do() shouldn't T_BEGIN/T_END or the
keywords array should start larger.
0 libSystem.B.dylib 0x00007fff875f4eba __kill + 10
1 libSystem.B.dylib 0x00007fff875f4eac kill + 14
2 libSystem.B.dylib 0x00007fff87683519 raise + 25
3 libSystem.B.dylib 0x00007fff876a4e12 abor...
2012 Jan 23
3
make imap search less verbose
We have an imap-client (SOGo) that doesn't handle this status output while
searching:
* OK Searched 76% of the mailbox, ETA 0:50
Is there any way to disable this output on the dovecot-side?
-jf
2013 Jun 08
1
Problem redirecting email using pigeonhole 0.4.0 (with patch)
...t;, SIEVE_IMPLEMENTATION, FALSE, NULL);
if ( recipient != NULL )
- rfc2822_header_write(hdr, "X-Sieve-Redirected-From", recipient);
+ rfc2822_header_append(hdr, "X-Sieve-Redirected-From", recipient,
FALSE, NULL);
o_stream_send(output, str_data(hdr), str_len(hdr));
} T_END;
Best regards,
Andrey.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: crlf.patch
Type: application/octet-stream
Size: 838 bytes
Desc: not available
URL: <http://dovecot.org/pipermail/dovecot/attachments/20130609/f9a35d0a/attachment-0001.obj>
2009 Apr 13
0
How can I skip EOH in headers?
...ike it much if there are duplicates,
so make sure that there can't be any by appending
our own X-Delivery-ID header. */
const char *hdr;
T_BEGIN {
mbox_save_x_delivery_id(ctx);
} T_END;
hdr = ctx->x_delivery_id_header;
streams[0] = i_stream_create_from_data(hdr,
strlen(hdr));
streams[1] = filter;
streams[2] = NULL;
ret = i_stream_create_concat(streams);
i_stream_unref(&...
2020 Oct 15
2
how to set smtp-client -> submission_relay_host for IPv4 only?
On 10/15/20 2:02 PM, jeremy ardley wrote:
>> how/where do I configure (just) the dovecot smtp-client -> submission_relay_host to only connect IPv4?
>
> It appears your host has A and AAAA records in your DNS. The clients will try IPV6 first if they see an AAAA record.
>
> If you don't need IPV6 for your host remove the AAAA record. All connections will then only use
2015 Oct 06
4
More information about - Dovecot 2.2.x quota mysql and dict
...SQL_DICT_RECURSE_NONE, query, &error)
< 0) {
i_error("dict-sql: Failed to delete %s: %s", key,
error);
ctx->failed = TRUE;
} else {
sql_update(ctx->sql_ctx, str_c(query));
}
} T_END;
}
=== === ===
Now dic + mysql doesn?t work in Dovecot 2.2.19, because first DELETE
operator delete information from base about my domain mydomain.lan
Thanks!
Simon.
--
View this message in context: http://dovecot.2317879.n4.nabble.com/More-information-about-Dovecot-2-2-x-quota-mysql-and...
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...query {
+ struct multi_pgsql_simple_query super;
+
+ sql_query_callback_t *cb;
+ void *ctx;
+};
+
+static void abort_user_query(struct multi_pgsql_query *q,
+ struct sql_result *r)
+{
+ struct multi_pgsql_user_query *qry;
+
+ qry = (void *)q;
+
+ T_BEGIN {
+ qry->cb(r, qry->ctx);
+ } T_END;
+}
+
+static void user_query_result(struct multi_pgsql_query *q,
+ struct multi_pgsql_pgc *pgc,
+ PGresult **pgr)
+{
+ struct multi_pgsql_result result;
+ struct multi_pgsql_user_query *qry;
+
+ qry = (void *)q;
+ init_multi_pgsql_result(&result, *pgr);
+
+ T_BEGIN {
+ qry-&g...