Displaying 20 results from an estimated 30 matches for "debug_print".
Did you mean:
debug_printf
2006 Nov 15
3
qemu/rtl8139: Max transmit frame size
...gt;cplus_txbuffer_len += CP_TX_BUFFER_SIZE;
- s->cplus_txbuffer = realloc(s->cplus_txbuffer, s->cplus_txbuffer_len);
+ txbuffer = realloc(s->cplus_txbuffer, s->cplus_txbuffer_len);
+ if (!txbuffer)
+ free(s->cplus_txbuffer);
+ s->cplus_txbuffer = txbuffer;
DEBUG_PRINT(("RTL8139: +++ C+ mode transmission buffer space changed to %d\n", s->cplus_txbuffer_len));
}
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2017 Mar 21
0
Patch: make slightly more verbose versions of isohdp.x.S
...} elsif ($file =~ /^isohdp[fp][vx][^0-9a-z]/) {
$maxsize = $padsize = 432;
} elsif ($file =~ /^altmbr[^0-9a-z]/) {
$maxsize = $padsize = 439;
diff --git a/mbr/isohdpfv.S b/mbr/isohdpfv.S
new file mode 100644
index 0000000..46c9c07
--- /dev/null
+++ b/mbr/isohdpfv.S
@@ -0,0 +1,3 @@
+#define DEBUG_PRINT 1
+#include "isohdpfx.S"
+
diff --git a/mbr/isohdpfx.S b/mbr/isohdpfx.S
index 17e1efe..6d8ab36 100644
--- a/mbr/isohdpfx.S
+++ b/mbr/isohdpfx.S
@@ -121,10 +121,24 @@ _start:
/* We have GPT partition information */
movl (32+20)(%si), %ecx
movl (36+20)(%si), %ebx
+
+#ifdef DEBUG_PRIN...
2019 Aug 28
2
LMTP Post login script for acl_groups
...ame problem as you.
When dovecot runs lmtp, no user is logged in, so there is no user from
which you can get groups. So i think, my solution is (not really sure,
if this is right, it's a long time ago, i played around) this transport
in exim for local delivery
dovecot_delivery:?????????????
? debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
translates to GET_LOCAL_MAIL"
? driver = pipe???????????????
? command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
? message_prefix =
? message_suffix =
? delivery_date_add
? envelope_to_add?????????????
? return_path_add???...
2019 Aug 28
5
LMTP Post login script for acl_groups
...ed in, so there is no user from
> > which you can get groups. So i think, my solution is (not really sure,
> > if this is right, it's a long time ago, i played around) this transport
> > in exim for local delivery
> >
> > dovecot_delivery:
> > debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
> > translates to GET_LOCAL_MAIL"
> > driver = pipe
> > command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
> > message_prefix =
> > message_suffix =
> > delivery_...
2016 Nov 21
2
Exim still accepting emails to nonexistent users
Hi Heiko,
Here is the router:
virtual_aliases:
driver = redirect
debug_print = "R: Check address using virtual_aliases for $local_part@$domain"
allow_fail
allow_defer
hide data = CHECK_VIRTUAL_ALIASES
user = vmail
group = mail
local_user:
debug_print = "R: local_user for $local_part@$domain"
driver = accept...
2016 Nov 07
2
Redirect the emails from domain2 to domain1
...main_new. I'd like to redirect all the emails from
domain_old to the local mailboxes of users @ domain_new. In exim I've
assumed that it is enough to add domain_old to the list of local domains:
domainlist local_domains = @ : domain_new : domain_old
...
begin routers
...
local_users:
debug_print = "R: local_user for $local_part@$domain"
driver = accept
domains = +local_domains
transport = dovecot_lmtp
cannot_route_message = Unknown user
However in Dovecot I'm checking both the username and the domain to
perform the authentication:
auth_username_format = %Lu
pass...
2017 Mar 21
3
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
...-------------------------------------------------------------- */
/*
* Modified MBR code used on an ISO image in hybrid mode.
*
* This doesn't follow the El Torito spec at all -- it is just a stub
* loader of a hard-coded offset, but that's good enough to load
* ISOLINUX.
*/
#define DEBUG_PRINT 1
#include "adjust.h"
.code16
.text
HYBRID_MAGIC = 0x7078c0fb
isolinux_hybrid_signature = 0x7c00+64
isolinux_start_hybrid = 0x7c00+64+4
.globl bootsec
/* Important: the top 6 words on the stack are passed to isolinux.bin */
stack = 0x7c00
partoffset = (stack-8)
driveno = (stac...
2006 Sep 09
0
dovecot LDA w/ exim: "dyld: Library not loaded" & "trace trap" errors
...am redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/MailServer/Conf/Exim/exim.conf
in my exim.conf, i've set up to use dovecot's LDA:
...
begin routers
...
dovecot_localuser:
debug_print = "EXIM-DEBUG [R:dovecot_localuser] for
$local_part@$domain"
driver = accept
domains = +local_domains
local_part_suffix = +*
local_part_suffix_optional
transport = dovecot_lda
...
begin transports
...
do...
2019 Aug 28
1
LMTP Post login script for acl_groups
...t; which you can get groups. So i think, my solution is (not really sure,
> >>> if this is right, it's a long time ago, i played around) this transport
> >>> in exim for local delivery
> >>>
> >>> dovecot_delivery:
> >>> debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
> >>> translates to GET_LOCAL_MAIL"
> >>> driver = pipe
> >>> command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
> >>> message_prefix =
> >>> me...
2016 Nov 16
2
Exim still accepting emails to nonexistent users
After adding the configuration bit:
deny
message = invalid recipient
domains = +local_domains
!verify = recipient/callout=no_cache
from: http://wiki2.dovecot.org/LMTP/Exim <http://wiki2.dovecot.org/LMTP/Exim> running update-exim4.conf and service exim4 restart
the server is still accepting emails to recipients that do not exist in dovecot.
Any ideas?
2008 May 19
0
source-filter_dest-filter patch failing with rsync 3.0.0
...] rsync 1040 fhandler_base::open_fs: 1 =
fhandler_disk_file::open (c:\backup\pruebas
sftp\?ra?a\html\lib\Encode\MIME\Header.html, 0x10000)
70 9021867 [main] rsync 1040 get_file_attribute: file: c:\backup\pruebas
sftp\?ra?a\html\lib\Encode\MIME\Header.html
131 9021998 [main] rsync 1040 cygpsid::debug_print: get_sids_info: owner
SID = S-1-5-21-1844237615-1220945662-725345543-1003
54 9022052 [main] rsync 1040 cygpsid::debug_print: get_sids_info: group
SID = S-1-5-21-1844237615-1220945662-725345543-513
46 9022098 [main] rsync 1040 get_info_from_sd: ACL 1C0, uid 1003, gid 513
70 9022168 [main] r...
2007 Jan 26
1
Ubuntu, Exim, deliver: permissions/setgid problem
...cot-lda.log
}
auth default {
mechanisms = plain
socket listen {
master {
path = /var/run/dovecot-auth-master
mode = 0660
group = mail
}
}
# ... (other auth config directives here)
}
And the relevent parts of my exim4.conf are as follows:
# in router section:
local_user:
debug_print = "R: local_user for $local_part@$domain"
driver = accept
domains = +local_domains
check_local_user
local_part_suffix = +*
local_part_suffix_optional
local_parts = ! root
transport = dovecot_deliver_user
# in transport section:
dovecot_deliver_user:
debug_print = "T: pipe fo...
2019 Aug 29
3
[SOLVED] Re: LMTP Post login script for acl_groups
...>> which you can get groups. So i think, my solution is (not really sure,
>>>> if this is right, it's a long time ago, i played around) this transport
>>>> in exim for local delivery
>>>>
>>>> dovecot_delivery:
>>>> debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
>>>> translates to GET_LOCAL_MAIL"
>>>> driver = pipe
>>>> command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
>>>> message_prefix =
>>>> message...
2019 Aug 30
1
[SOLVED] Re: LMTP Post login script for acl_groups
...think, my solution is (not really sure,
>>>>>> if this is right, it's a long time ago, i played around) this transport
>>>>>> in exim for local delivery
>>>>>>
>>>>>> dovecot_delivery:
>>>>>> debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
>>>>>> translates to GET_LOCAL_MAIL"
>>>>>> driver = pipe
>>>>>> command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
>>>>>> message_prefi...
2016 Nov 21
0
Exim still accepting emails to nonexistent users
Hi Marti,
(Please do not send CC to my private account)
Marti Markov <marti1234 at gmail.com> (Mo 21 Nov 2016 03:52:54 CET):
>
> Here is the router:
>
> virtual_aliases:
?
> hide data = CHECK_VIRTUAL_ALIASES
> local_user:
> debug_print = "R: local_user for $local_part@$domain"
> driver = accept
> domains = +local_domains
> #Dovecot auth check
> # check_local_user
> local_parts = ! root
> transport = dovecot_lmtp
>
> And this is the transport:
>
> dovecot_lmtp:
> driver = lm...
2016 Nov 23
0
Exim still accepting emails to nonexistent users
Hi Heiko,
Sorry for using your private email address. :/
I managed to get this working using local_user changes by adding ldap user
verification there:
local_user:
debug_print = "R: local_user LDAP lookup for $local_part@$domain"
driver = accept
domains = +local_domains
condition = CHECK_VIRTUAL_USER
transport = dovecot_lmtp
cannot_route_message = Unknown user
Where CHECK_VIRTUAL_USER is:
# Query that tests the existence of the user
CHECK_...
2019 Aug 28
0
LMTP Post login script for acl_groups
...cot runs lmtp, no user is logged in, so there is no user from
> which you can get groups. So i think, my solution is (not really sure,
> if this is right, it's a long time ago, i played around) this transport
> in exim for local delivery
>
> dovecot_delivery:
> debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
> translates to GET_LOCAL_MAIL"
> driver = pipe
> command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
> message_prefix =
> message_suffix =
> delivery_date_add
> envelope_to_ad...
2019 Aug 28
0
LMTP Post login script for acl_groups
...s no user from
>>> which you can get groups. So i think, my solution is (not really sure,
>>> if this is right, it's a long time ago, i played around) this transport
>>> in exim for local delivery
>>>
>>> dovecot_delivery:
>>> debug_print = "T: dovecot_delivery_pipe for $local_part@$domain
>>> translates to GET_LOCAL_MAIL"
>>> driver = pipe
>>> command = /usr/lib/dovecot/deliver -d "GET_LOCAL_MAIL"
>>> message_prefix =
>>> message_suffix =
>>&g...
2007 Nov 14
1
JitterBuffer in SVN
Jean-Marc Valin wrote:
>> Once I updated the application to use the updated function call, the
>> jitter buffer worked again, giving sane results even with +/- 30 ms
>> arrival times and 20% packet loss. So sorry for bothering you with a
>> bogus bug report :(
>>
>
> Happy to hear it works. ...but I'm still interesting on test data for
> the jitter
2008 Feb 07
0
[PATCH] ioemu: use POSIX int type
...ff-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
diff -r 2adf154d17c2 tools/ioemu/hw/rtl8139.c
--- a/tools/ioemu/hw/rtl8139.c Thu Feb 07 10:47:20 2008 +0000
+++ b/tools/ioemu/hw/rtl8139.c Thu Feb 07 12:04:07 2008 +0000
@@ -1468,7 +1468,7 @@ static void rtl8139_BasicModeCtrl_write(
DEBUG_PRINT(("RTL8139: BasicModeCtrl register write(w) val=0x%04x\n", val));
/* mask unwriteable bits */
- uint32 mask = 0x4cff;
+ uint32_t mask = 0x4cff;
if (1 || !rtl8139_config_writeable(s))
{
_______________________________________________
Xen-devel mailing list
Xen-deve...