2013-10-23 GnuCash IRC logs

00:43:32 *** shaun has joined #gnucash
01:34:19 *** kpreid has quit IRC
01:37:14 *** aqua___ has joined #gnucash
01:59:27 *** aqua___ has quit IRC
02:13:31 *** fell_ has quit IRC
02:20:38 *** john has joined #gnucash
02:20:39 *** gncbot sets mode: +o john
02:25:06 *** aqua___ has joined #gnucash
02:45:07 *** john has quit IRC
02:59:23 *** gjanssens has joined #gnucash
02:59:42 <gjanssens> @op
02:59:42 <gncbot> gjanssens: Error: You don't have the #gnucash,op capability. If you think that you should have this capability, be sure that you are identified before trying again. The 'whoami' command can tell you if you're identified.
03:00:13 *** gncbot sets mode: +o gjanssens
03:18:06 *** aqua_ has joined #gnucash
03:18:49 *** aqua___ has quit IRC
03:24:12 *** aqua_ has quit IRC
03:24:44 *** aqua_ has joined #gnucash
03:35:57 *** aqua_ has quit IRC
03:36:26 *** aqua___ has joined #gnucash
03:49:00 *** aqua___ has quit IRC
04:05:53 *** shaun has quit IRC
04:14:57 *** aqua___ has joined #gnucash
04:24:21 *** aqua___ has quit IRC
04:25:29 *** aqua___ has joined #gnucash
04:38:37 *** aqua_ has joined #gnucash
04:39:08 *** aqua___ has quit IRC
04:39:40 *** aqua_ has quit IRC
04:41:05 *** aqua___ has joined #gnucash
04:42:15 *** aqua___ has quit IRC
04:44:27 *** aqua___ has joined #gnucash
04:47:30 *** aqua___ has joined #gnucash
04:49:52 *** aqua___ has quit IRC
04:52:17 *** aqua___ has joined #gnucash
05:07:27 *** aqua___ has quit IRC
06:06:45 *** Topcat has joined #gnucash
06:24:06 *** Topcat has quit IRC
06:24:38 *** Topcat has joined #gnucash
06:31:38 *** Topcat has quit IRC
06:32:09 *** Topcat has joined #gnucash
06:39:07 *** Topcat has quit IRC
06:39:39 *** Topcat has joined #gnucash
06:52:44 *** Topcat has quit IRC
06:53:16 *** Topcat has joined #gnucash
07:05:17 *** Topcat has quit IRC
07:05:50 *** Topcat has joined #gnucash
07:15:17 <mikee> Hi Geert.
07:17:22 <mikee> Still the same error. Done all sorts of cleans, including git clean and removal of installation. It installs to /home/mikee/progs/gnucash-trunk.
07:18:48 <mikee> Where shoold I expect the file org.gnucash.dialogs.import.ofx to live after installation?
07:19:57 <mikee> I got sidetracked into osm-gb on a discussion about footpaths yesterday.
07:22:21 *** fell_ has joined #gnucash
07:22:21 *** gncbot sets mode: +o fell_
07:41:34 *** aqua___ has joined #gnucash
07:41:46 <gjanssens> mikee, when ofx is enabled, org.gnucash.import.ofx.gschema.xml should be installed into $(install_dir)/share/glib-2.0/schemas
07:43:34 <mikee> gjanssens: Thanks.
07:45:21 <gjanssens> and you should also find some files in $(build_dir)/src/import-export/ofx/gschemas
07:46:13 <gjanssens> I have org.gnucash.dialogs.import.ofx.gschema.xml and org.gnucash.dialogs.import.ofx.gschema.valid
07:46:39 <gjanssens> (that should have been with dialogs in the name in $(install_dir) as well)
07:47:12 <gjanssens> I wonder if there is a bug in older versions of the GSETTINGS macro
07:47:55 <gjanssens> mikee, Can you send me the Makefile in your $(build_dir)/src/import-export/ofx/gsettings directory ?
07:48:05 <gjanssens> s/gsettings/gschemas/
07:48:15 <gjanssens> I would like to compare it with mine
07:52:17 *** aqua___ has quit IRC
07:57:20 *** Topcat has quit IRC
07:57:51 *** Topcat has joined #gnucash
08:02:20 *** aqua___ has joined #gnucash
08:03:03 <warlord> gjanssens: don't you have a minimum version of gsettings you require (and tested in configure?)
08:07:29 <gjanssens> warlord: I have followed the guidelines in the gsettings reference manual
08:07:46 <gjanssens> Yes, I have added gio >= x.y.z
08:08:47 <gjanssens> gio-2.0 >= 2.25 to be precise
08:10:13 <mikee> gjanssens: OK. I sent a tar of the entire directory.
08:11:47 *** aqua___ has quit IRC
08:11:49 <gjanssens> mikee, got it, thanks
08:12:08 <gjanssens> Is that the contents of the directory after you have run make && make install ?
08:12:27 <gjanssens> Or a clean directory after autogen
08:12:59 *** aqua___ has joined #gnucash
08:18:27 <gjanssens> mikee, the build rules are exactly the same in both makefiles, but the variables differ
08:19:11 <gjanssens> The most important build rule is this one:
08:19:13 <gjanssens> %.gschema.valid: %.gschema.xml $(gsettings__enum_file)
08:19:22 <gjanssens> $(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$${d}$< && touch $@
08:20:04 <gjanssens> I'll note that in your makefile AM_V_GEN is not defined, while it is in mine
08:20:21 <gjanssens> The other difference I see is that you are building in-tree, while I'm building out of tree
08:20:46 <gjanssens> That shouldn't matter, but it could
08:21:03 <gjanssens> Another test:
08:21:19 <gjanssens> if you go directly into src/import-export/ofx/gschemas
08:21:25 <gjanssens> and run make && make install
08:21:50 <gjanssens> does it actually do something, or does it give errors/warnings ?
08:24:19 <gjanssens> For reference: here is the output on my system if I run make (no make install yet):
08:24:27 <gjanssens> LC_ALL=C /usr/bin/intltool-merge -x -u --no-translations /kobaltnet/janssege/Development/EclipseGnuCash/GnuCash-git/src/import-export/ofx/gschemas/org.gnucash.dialogs.import.ofx.gschema.xml.in org.gnucash.dialogs.import.ofx.gschema.xml
08:24:28 <gjanssens> Merging translations into org.gnucash.dialogs.import.ofx.gschema.xml.
08:24:29 <gjanssens> CREATED org.gnucash.dialogs.import.ofx.gschema.xml
08:24:31 <gjanssens> if test -f "org.gnucash.dialogs.import.ofx.gschema.xml"; then d=; else d="/kobaltnet/janssege/Development/EclipseGnuCash/GnuCash-git/src/import-export/ofx/gschemas/"; fi; glib-compile-schemas --strict --dry-run --schema-file=${d}org.gnucash.dialogs.import.ofx.gschema.xml && touch org.gnucash.dialogs.import.ofx.gschema.valid
08:27:43 *** aqua___ has quit IRC
08:30:29 <mikee> gjanssens: After a build
08:32:58 <mikee> Running make in src/import-export/ofx/gschemas
08:33:04 <mikee> Merging translations into org.gnucash.dialogs.import.ofx.gschema.xml.
08:33:08 <mikee> CREATED org.gnucash.dialogs.import.ofx.gschema.xml
08:33:16 <mikee> if test -f "org.gnucash.dialogs.import.ofx.gschema.xml"; then d=; else d="./"; fi; glib-compile-schemas --strict --dry-run --schema-file=${d}org.gnucash.dialogs.import.ofx.gschema.xml && touch org.gnucash.dialogs.import.ofx.gschema.valid
08:34:35 <mikee> so looks the like the same output
08:35:20 <mikee> make install gives a warning
08:35:27 <mikee> undefined reference to <schema id='org.gnucash.dialogs.edit-prices'/>
08:36:47 <mikee> but gnucash now runs :)
08:39:11 *** KaiForce has joined #gnucash
08:39:31 <gjanssens> Yay !
08:40:06 <gjanssens> But now we still need to figure out why make skips this directory on your system in a generic make
08:42:35 <gjanssens> mikee, do you happen to have the build output from a previous build still available ?
08:43:31 <gjanssens> It'd be interesting to see if make enters the ofx/gschemas directory or not when started from top-level
08:43:35 <mikee> Ah, no.
08:43:59 <gjanssens> Well, you could just run make in the top level directory as well
08:44:15 <gjanssens> and verify if the ofx/gschemas directory is entered or not
08:44:47 <mikee> If a do a clean etc. then I can probably recreate the problem.
08:45:27 <gjanssens> You can even try without a clean
08:45:41 <gjanssens> Make recurses through all directories anyway
08:46:26 <gjanssens> I'm trying to eliminate possible causes
08:46:45 <gjanssens> If make never enters the directory, we have to search higher up the tree for the issue
08:49:31 <mikee> OK. I'll get back to you in a while .
08:49:46 *** aqua___ has joined #gnucash
08:55:59 *** Topcat has quit IRC
08:56:31 *** Topcat has joined #gnucash
08:57:06 *** aqua___ has quit IRC
08:58:57 *** aqua___ has joined #gnucash
09:06:34 *** aqua___ has quit IRC
09:08:02 *** aqua___ has joined #gnucash
09:10:27 <mikee> New build. grepping the output for src/import-export/ofx/gschemas I only see
09:10:31 <mikee> config.status: creating src/import-export/ofx/gschemas/Makefile
09:11:44 <mikee> But, having removed the install and reinstalled, it runs fine. But org.gnucash.dialogs.import.ofx doesn't exist in
09:11:46 <mikee> ~/progs/gnucash-trunk/share/glib-2.0/schemas/
09:11:50 <mikee> ?
09:13:06 <gjanssens> Did your new build configure with --enable-ofx ?
09:13:19 <mikee> using find . -name org.gnucash.dialogs.import.ofx in the src dir turns up nothing either.
09:13:34 <mikee> Yep enabled ofx
09:14:05 <mikee> I could do another build without it, then another with?
09:14:43 <gjanssens> Does your build output enter src/impor-export/ofx then ?
09:14:54 <gjanssens> s/impor/import/
09:15:08 <mikee> Oh wait. It was without ofx.
09:15:25 <mikee> I'll do it again.
09:15:28 <gjanssens> Ok
09:23:19 *** Topcat has quit IRC
09:23:50 *** Topcat has joined #gnucash
09:28:54 *** aqua___ has quit IRC
09:30:01 *** aqua___ has joined #gnucash
09:32:31 <mikee> OK. It runs, but ofx import is missing from the menu. Again org.gnucash.dialogs.import.ofx doesn't exist in gnucash-trunk/share/glib-2.0/schemas
09:32:49 <mikee> From build output: Optional components... : ofx python
09:33:53 <mikee> I don't see the build descend into src/impor-export/ofx at all.
09:34:55 <mikee> So looks ofx isn't being built at all
09:35:18 <mikee> ^ like
09:37:32 <gjanssens> ok, so we need to take a step back
09:38:00 <mikee> Just looking at config.log
09:38:09 <mikee> WITH_OFX_TRUE='#'
09:39:33 *** Topcat has quit IRC
09:40:34 *** aqua___ has quit IRC
09:41:42 *** aqua___ has joined #gnucash
09:41:46 <warlord> mikee: did it find a working libofx devel?
09:42:09 <gjanssens> yum install libofx-devel
09:42:16 <mikee> Ahh, this could be embarresing...
09:42:23 <gjanssens> Oddly enough it was missing on my system as well
09:42:31 <mikee> checking for libofx
09:42:35 <mikee> result: no
09:42:47 <gjanssens> But this reveils a bug in our configure script
09:43:09 <mikee> Shouldn' have config complained?
09:43:51 <mikee> Should be fatal error yes?
09:43:59 <gjanssens> With --enable-ofx the configure script should have aborted
09:44:27 <gjanssens> Without this option, ofx support is optional
09:47:07 <mikee> Trying again after installing libofx-devel.
09:53:09 <warlord> Right, if you --enable-ofx and it doesn't find libofx then it should be fatal. If you do not explicitly --enable-ofx then lack of libofx is not fatal, it's just turned off.
09:54:40 <gjanssens> Trouble is that it doesn't work that way.
09:54:41 <mikee> Configure output has "checking for libofx... no" but continues without stopping.
09:55:02 <gjanssens> I'm fixing the configure script as we speak.
09:55:26 <warlord> Hmm, I thought it used to work that way.
09:58:08 *** aqua___ has quit IRC
09:59:16 *** aqua___ has joined #gnucash
10:02:19 *** aqua___ has quit IRC
10:03:36 *** aqua___ has joined #gnucash
10:10:48 <gjanssens> There are some hints that is should have worked like that
10:10:59 <gjanssens> Setting --enable-ofx will print a note
10:11:18 <gjanssens> checking whether to use OFX... yes -- failure is fatal
10:11:25 <gjanssens> But it's not fatal
10:22:56 *** aqua___ has quit IRC
10:24:54 *** kpreid has joined #gnucash
10:26:47 <warlord> Hmm, not using AC_MSG_ERR()?
10:27:45 <gjanssens> Indeed.
10:27:54 <warlord> Hmm
10:27:55 <gjanssens> r23317 fixes it
10:27:59 <warlord> ok
10:31:06 <gjanssens> I used git blame to find where this might have changed
10:31:21 <gjanssens> I see warlord created the original ofx check in 2006
10:31:48 <gjanssens> And in 2011 cstim simplified the check to use PKG_CHECK_MODULES
10:31:58 <gjanssens> But at the same time made failure non-fatal
10:32:16 <gjanssens> Commit 20407
10:32:32 <gjanssens> This change first appeared in GnuCash 2.4.4
10:33:14 <gjanssens> But enough digging around now
10:33:27 <gjanssens> I'm glad we found the bug and that mikee can continue
10:33:37 <gjanssens> Thanks for helping in the debug session !
10:35:38 <gjanssens> warlord: I'm seeing some irregularities in the commit mails that get sent by the git post-receive hook
10:35:52 <gjanssens> Note that I'm the only one currently receiving these mails
10:36:10 <gjanssens> As two of my private e-mail addresses have been configured there for testing
10:36:39 <gjanssens> But when I push changes to svn, I only sometimes get mail from the git post-receive hook
10:37:15 <gjanssens> The svn post-commit hook always works. I always get mails from the gnucash-changes and gnucash-patches mailing lists
10:37:29 <gjanssens> Do you see any send errors in your logs ?
10:39:12 <gjanssens> For example, I did receive a mail for r23317 (committed a few minutes ago)
10:40:23 <gjanssens> But I did not for r23314 - r23316
10:40:32 <gjanssens> These were committed yesterday and today
10:42:51 <warlord> I haven't seen any errors.
10:43:52 <warlord> What kind of irregularities are you seeing, exactly?
10:44:47 <warlord> 23317 looks like it pushed fine.
10:44:59 <gjanssens> Well, that I get mails for some and don't get mails for others
10:45:28 <gjanssens> All the commits are pushed fine, but I don't get mails all the time
10:45:53 <warlord> Hmm, not that there is not a 1:1 push.. Some svn commits get combined into a single git push..
10:46:23 <gjanssens> Only if the commits are pushed really close together.
10:46:57 <gjanssens> But for example r23314 was pushed yesterday evening, and r23315 this morning
10:47:02 <gjanssens> I didn't get mail for either
10:47:46 <gjanssens> Those were two large commits, so perhaps there's a size filter blocking these mails somewhere between being sent and arriving at my place
10:48:17 <mikee> gjanssens: Great job. Finding bugs I can do, fixing them, not so good at.
10:48:36 <gjanssens> But r23316 was a minor commit, sent in isolation
10:48:38 <warlord> gjanssens: that's hard to say..
10:48:42 <gjanssens> Still I didn't get a mail for it
10:48:49 <gjanssens> mikee, you're welcome :)
10:49:23 <warlord> gjanssens: I have all the logs from yesterday; I don't see any errors.
10:49:52 <warlord> what git hashes do these reference? (the log emails I get dont have svn ids)
10:50:11 <gjanssens> LMGTFY
10:50:37 <gjanssens> r23316: 6d0de883328f90c9bb000bcdfbe26260342a6683
10:50:48 <gjanssens> Comitted about 2 hours ago
10:51:24 <gjanssens> 2013-10-23 14:46:47 GMT+1 (DST)
10:51:34 <gjanssens> I hope I got the timezone right
10:51:41 <gjanssens> I'm always mixing that up
10:52:20 <warlord> No worries, I found that log message. No errors.
10:52:35 <warlord> Running git svn fetch
10:52:35 <warlord> remote: *** Push refs to origin (usually github)...
10:52:35 <warlord> remote: To ssh://git@github.com/Gnucash/gnucash.git
10:52:35 <warlord> remote: efcdd28..6d0de88 master -> master
10:52:35 <warlord> remote: efcdd28..6d0de88 trunk -> trunk
10:52:36 <warlord> remote: Everything up-to-date
10:52:38 <warlord> To ssh://git@code.gnucash.org/gnucash.git
10:52:40 <warlord> efcdd28..6d0de88 svn/trunk -> trunk
10:52:42 <warlord> Everything up-to-date
10:53:21 <gjanssens> Can you also display the log for 748e8a48979fc37ffa860b6e273475c73ba58128
10:53:31 <gjanssens> Which is a commit I got mail for
10:53:52 <gjanssens> (Sent about half an hour ago)
10:56:01 <warlord> Running git svn fetch
10:56:01 <warlord> remote: *** Push refs to origin (usually github)...
10:56:01 <warlord> remote: To ssh://git@github.com/Gnucash/gnucash.git
10:56:01 <warlord> remote: 6d0de88..748e8a4 master -> master
10:56:01 <warlord> remote: 6d0de88..748e8a4 trunk -> trunk
10:56:02 <warlord> remote: Everything up-to-date
10:56:04 <warlord> To ssh://git@code.gnucash.org/gnucash.git
10:56:06 <warlord> 6d0de88..748e8a4 svn/trunk -> trunk
10:56:08 <warlord> Everything up-to-date
10:56:46 <gjanssens> Hmm, identical logs (except for the hashes of course)
10:56:53 <warlord> Yeah..
10:57:04 <warlord> I
10:57:06 <gjanssens> So the logs don't indicate whether or not mail is actually sent
10:57:09 <warlord> 'm not sure what log to look at.
10:57:21 <gjanssens> Do you have maillogs ?
10:57:26 <warlord> I'm looking at the maillog but it's hard to see a failure.
10:57:49 <warlord> (also not sure what to 'grep' for)
10:59:59 <gjanssens> One of my e-mail addresses perhaps ?
11:00:23 <gjanssens> The ones I use in the post-receive hook both end in kobaltwit.be
11:02:16 <warlord> I see:
11:02:17 <warlord> Oct 23 08:49:04 code sendmail[29046]: r9NCmn2b029046: to=info@kobaltwit.be, ctla
11:02:17 <warlord> ddr=git-svn (9688/9688), delay=00:00:15, xdelay=00:00:01, mailer=relay, pri=3086
11:02:17 <warlord> 6, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (r9NCn3DS029092 Message a
11:02:18 <warlord> ccepted for delivery)
11:02:31 <warlord> (sorry for the weird line-breaks)
11:03:23 <gjanssens> And that time would be about what time here ?
11:04:08 <warlord> 2 1/2 hours ago
11:04:26 <warlord> Oh, you got that one. Let me check the one from yesterday..
11:05:12 <warlord> I also see this one:
11:05:13 <warlord> Oct 23 08:49:05 code sendmail[29121]: r9NCn4do029121: to=geert@kobaltwit.be, ctl
11:05:14 <warlord> addr=git-svn (9688/9688), delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=316
11:05:14 <warlord> 40, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (r9NCn5fi029163 Message
11:05:14 <warlord> accepted for delivery)
11:05:14 <warlord> --More--(-38%)
11:05:52 <gjanssens> Yes, I use one mail address to act as gnucash-changes and the other replaces gnucash-patches
11:06:13 <gjanssens> Are there any others today ?
11:06:51 <gjanssens> I did 3 commits today, so I'd expect 6 mails sent (3 to each mail address each)
11:07:40 <gjanssens> Sorry, that's wrong
11:07:44 <warlord> Let be do a quick grep..
11:07:50 <gjanssens> I sent only dit two commits today
11:08:00 <gjanssens> So I'd expect 4 mails being sent
11:08:28 <warlord> Hmm .. intreresting...
11:08:30 <warlord> Oct 23 08:49:04 code sendmail[29046]: r9NCmn2b029046: to=info@kobaltwit.be, ctladdr=git-svn (9688/9688), delay=00:00:15, xdelay=00:00:01, mailer=relay, pri=30866, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (r9NCn3DS029092 Message accepted for delivery)
11:08:30 <warlord> Oct 23 08:49:05 code sendmail[29121]: r9NCn4do029121: to=geert@kobaltwit.be, ctladdr=git-svn (9688/9688), delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=31640, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (r9NCn5fi029163 Message accepted for delivery)
11:08:31 <warlord> Oct 23 08:49:06 code sendmail[29099]: r9NCn3DS029092: to=<info@kobaltwit.be>, ctladdr=<git-svn@code.gnucash.org> (9688/9688), delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=121225, relay=asav01.bru.nucleus.be. [188.93.153.69], dsn=5.0.0, stat=Service unavailable
11:08:35 <warlord> Oct 23 08:49:07 code sendmail[29168]: r9NCn5fi029163: to=<geert@kobaltwit.be>, ctladdr=<git-svn@code.gnucash.org> (9688/9688), delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=121999, relay=asav02.ant.nucleus.be. [77.73.96.98], dsn=5.0.0, stat=Service unavailable
11:08:41 <warlord> Notice the "Service unavailable"?
11:09:05 <gjanssens> Yes, odd
11:09:39 <warlord> From 30 minutes ago all four are "accepted for delivery"
11:10:56 <gjanssens> The first two are localhosts, so I suppose these are passed via your local anti-virus/anti-spam filter
11:11:06 <warlord> The first two are, I believe, ..... yes, exactly.
11:11:15 <gjanssens> The last two are connecting to my hosting provider
11:11:22 <gjanssens> Which seems to fail from time to time
11:11:40 <warlord> Yep. Here are the most recent two that succeeded:
11:11:41 <warlord> Oct 23 10:28:19 code sendmail[1813]: r9NESHSP001809: to=<info@kobaltwit.be>, ctladdr=<git-svn@code.gnucash.org> (9688/9688), delay=00:00:02, xdelay=00:00:02, mailer=esmtp, pri=121264, relay=asav01.bru.nucleus.be. [188.93.153.69], dsn=2.0.0, stat=Sent (2.0.0 r9NE0STP015172 Message accepted for delivery (2E4A6B1E-50B3-40F2-BBAE-4799BD42903B.1))
11:11:41 <warlord> Oct 23 10:28:19 code sendmail[1878]: r9NESIfb001874: to=<geert@kobaltwit.be>, ctladdr=<git-svn@code.gnucash.org> (9688/9688), delay=00:00:01, xdelay=00:00:01, mailer=esmtp, pri=122794, relay=asav01.bru.nucleus.be. [188.93.153.69], dsn=2.0.0, stat=Sent (2.0.0 r9NAJRPo029115 Message accepted for delivery (796C781F-90A3-4AF2-9FE1-4F552DCE7D74.1))
11:11:59 <warlord> Looks like asav01 is working ans asav02 is failing.
11:12:24 <gjanssens> Thanks, I'll report this to my hosting provider (nucleus)
11:12:40 <gjanssens> Got to go for about an hour
11:12:46 *** gjanssens is now known as gjanssens-afk
11:13:20 <warlord> It looks like it asav02 was accepting mail until sometime yesterday:
11:13:21 <warlord> Oct 22 06:44:01 code sendmail[25676]: r9MAhwMC025672: to=<geert@kobaltwit.be>, ctladdr=<git-svn@code.gnucash.org> (9688/9688), delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=122019, relay=asav02.ant.nucleus.be. [77.73.96.98], dsn=2.0.0, stat=Sent (2.0.0 r9M6c3Cp004277 Message accepted for delivery (FC31BFE8-66EF-4087-B280-FA135B79CF4F.1))
11:13:21 <warlord> Oct 22 11:47:45 code sendmail[9989]: r9MFlgVw009983: to=<info@kobaltwit.be>, ctladdr=<git-svn@code.gnucash.org> (9688/9688), delay=00:00:03, xdelay=00:00:03, mailer=esmtp, pri=122002, relay=asav02.ant.nucleus.be. [77.73.96.98], dsn=5.0.0, stat=Service unavailable
11:14:57 <warlord> Hmm, but asav01 has had its own set of issues, too... Looks like a failure from asav01 also aorund Oct 22 and 23.. :(
11:18:41 *** keryell has joined #gnucash
11:31:00 <mikee> Everything fine now. Thirsty after all that compiling. :)
11:31:40 <warlord> LOL
11:42:57 *** KaiForce has quit IRC
11:47:50 *** Topcat has joined #gnucash
11:57:54 *** Topcat has quit IRC
12:02:20 *** keryell has quit IRC
12:15:56 *** gjanssens-afk is now known as gjanssens
12:28:01 *** keryell has joined #gnucash
12:32:58 *** jmd has joined #gnucash
12:33:58 *** Krzysiek_K has joined #gnucash
12:34:07 *** Krzysiek_K has left #gnucash
12:46:34 *** aqua___ has joined #gnucash
12:54:38 *** aqua___ has quit IRC
12:56:45 *** aqua___ has joined #gnucash
13:06:13 *** aqua___ has quit IRC
13:08:26 *** aqua___ has joined #gnucash
13:26:09 *** aqua___ has quit IRC
13:27:45 *** aqua___ has joined #gnucash
13:41:44 *** rpg has joined #gnucash
13:41:49 *** aqua___ has quit IRC
14:24:33 *** Anton_ has joined #gnucash
14:26:35 *** Anton has quit IRC
14:35:11 *** Topcat has joined #gnucash
14:42:13 *** Topcat has quit IRC
14:42:35 *** Topcat has joined #gnucash
14:46:01 *** Topcat has quit IRC
15:59:19 *** keryell has quit IRC
16:01:36 *** jmd has quit IRC
16:02:13 *** keryell has joined #gnucash
16:02:57 *** bpburns has quit IRC
16:35:51 *** Jimraehl1 has joined #gnucash
16:53:52 *** gjanssens has quit IRC
17:36:26 *** Topcat has joined #gnucash
17:38:45 *** Topcat has quit IRC
18:50:27 *** bpburns has joined #gnucash
20:23:14 *** Jimraehl1 has quit IRC
21:23:35 *** Jimraehl1 has joined #gnucash
21:23:36 *** Qlaras has quit IRC
21:23:45 *** keryell has quit IRC
21:25:27 *** Qlaras has joined #gnucash
21:40:05 *** fell__ has joined #gnucash
21:40:05 *** gncbot sets mode: +o fell__
21:49:03 *** fell_ has quit IRC
23:39:00 *** fell__ has quit IRC
23:57:42 *** rpg has quit IRC