| J1m | app5.cnhi | 00:02 |
|---|---|---|
| *** malthe has joined #zope3-dev | 00:03 | |
| *** schwendinger has quit IRC | 00:07 | |
| *** hazmat has joined #zope3-dev | 00:12 | |
| *** ChanServ sets mode: +o hazmat | 00:12 | |
| pan | J1m :-) | 00:12 |
| J1m | sorry, wrong window | 00:13 |
| pan | i thought so ;-) | 00:13 |
| *** norro has quit IRC | 00:14 | |
| benji | launch attack at 05:30 | 00:15 |
| benji | oh, sorry, wrong window | 00:15 |
| pan | =) | 00:16 |
| pan | fast question - i have users objects and message objects. messages can be for all users or just for some of them. how should it be implemented, if later i want to show users all messages that are for all, and messages that are only for him? | 00:18 |
| pan | should i use annotations and put on every message list of users for later searching? | 00:19 |
| pan | and just look for messages that have empty list (thats for all), and look for messages where in annotations is name of this user? | 00:20 |
| pan | or perhaps i should create some 'connecting' folder and put there objects matching user and message. but it will be realtion db solution i think... | 00:21 |
| bigkevmcd | you could add the messages to the user object? | 00:27 |
| bigkevmcd | i.e. store them in a "messages" container which is a subobject of the user? | 00:27 |
| bigkevmcd | or at least, somewhere that you can easily discern the path based upon the user? | 00:27 |
| pan | but some messages are for few users, and some are for all users | 00:28 |
| pan | and some can be only for one user, and then your solution would be ok. bet there is more cases... | 00:28 |
| *** CSWookie has left #zope3-dev | 00:29 | |
| bigkevmcd | ok...so, catalog the message_users attribute, and search? | 00:29 |
| pan | as i understand you want to create user object, where i will keep all data about user (username,login,pass,name, and so on), and this object would be also container (folder), where subfolder would be messages, right? | 00:29 |
| pan | < bigkevmcd> ok...so, catalog the message_users attribute, and search? - ok, but how this search should like? shoulw i create new object, where i will store just name of user and subject of message? and later search on those 2 keys? | 00:31 |
| bigkevmcd | I don't think you need to? | 00:31 |
| bigkevmcd | Catalog the messages? | 00:31 |
| bigkevmcd | does a message know the users it's intended for? | 00:31 |
| pan | yes. message can have field List, like that: | 00:32 |
| pan | test = List( | 00:32 |
| pan | title=_(u"Test"), | 00:32 |
| pan | value_type=Choice(title=_(u"Testing"), vocabulary="test") | 00:32 |
| pan | ) | 00:32 |
| pan | and vocabulary="test" is utility which provide users, from Users folder | 00:32 |
| pan | so - yes - message can know the users. | 00:33 |
| pan | but how i will later find messages for those users? User will login and i have to show him messages for him. how to find them? | 00:33 |
| bigkevmcd | catalog search, index the attribute that contains the list of users | 00:33 |
| pan | but, as i understand i can find on normal Fields, not on Lists (like in this example)... am i wrong? | 00:34 |
| bigkevmcd | You should be able to search ok | 00:34 |
| pan | so... if i will put in Message object List field with users, i will be able to make search based on that? | 00:35 |
| pan | huh! how ? from ZMI i can just create index on field, chose interface and chose attribute | 00:36 |
| bigkevmcd | yes | 00:36 |
| * bigkevmcd digs for an example | 00:36 | |
| *** lucielejard has quit IRC | 00:37 | |
| * pan will send flowers to bigkevmcd for working example :-) | 00:37 | |
| pan | ;-) | 00:37 |
| bigkevmcd | pan: have you got philipp's book? | 00:38 |
| pan | bigkevmcd: i have | 00:39 |
| bigkevmcd | Chapter 19, is all about indexing and searching of the catalog | 00:39 |
| bigkevmcd | you want to adapt your list to a straight text string | 00:39 |
| bigkevmcd | and just index that | 00:39 |
| pan | yes, but there are only examples for simple Text | 00:39 |
| pan | not for List | 00:39 |
| benji | what little I know of indexing, it would seem that a SetIndex would be good there | 00:40 |
| pan | but i dont have text string! i have list of users connected with message. | 00:40 |
| bigkevmcd | benji: I'm not familiar with the SetIndex, but I can imagine what it does :-) | 00:40 |
| bigkevmcd | and if it does what it sounds like... | 00:40 |
| pan | what is SetIndex ;-) ? | 00:41 |
| * pan going on api page | 00:41 | |
| pan | Note: These are only interfaces that are registered with the site manager. | 00:41 |
| benji | http://svn.zope.org/zc.catalog/trunk/src/zc/catalog/setindex.txt?rev=73305&view=markup | 00:41 |
| *** tarek has quit IRC | 00:42 | |
| *** pan is now known as Pan^ | 00:42 | |
| Pan^ | benji: it looks like what i need... can i use it in zope3? | 00:45 |
| Pan^ | ill try... | 00:45 |
| benji | most certainly | 00:45 |
| Pan^ | thanks a lot. i will try to fight with this :-) | 00:47 |
| Pan^ | but as i understand my solution is ok? on the begining i was thinking about connectiong those object in schema interfaces ... somehow, but i didnt know how ;-) | 00:48 |
| *** vlado has quit IRC | 00:49 | |
| *** pbugni has quit IRC | 00:50 | |
| *** quodt has quit IRC | 00:51 | |
| *** hazmat has quit IRC | 00:51 | |
| *** supton has joined #zope3-dev | 00:52 | |
| *** dobee has quit IRC | 00:54 | |
| *** supton has quit IRC | 00:55 | |
| *** dobee has joined #zope3-dev | 00:55 | |
| *** supton has joined #zope3-dev | 00:56 | |
| *** Ariel_Calzada has joined #zope3-dev | 00:57 | |
| *** benji has quit IRC | 00:58 | |
| *** hazmat has joined #zope3-dev | 01:07 | |
| *** ChanServ sets mode: +o hazmat | 01:07 | |
| *** fcorrea has quit IRC | 01:14 | |
| *** whit is now known as whit|out | 01:14 | |
| *** rlo has quit IRC | 01:22 | |
| *** alecm has joined #zope3-dev | 01:22 | |
| *** jodok has quit IRC | 01:23 | |
| *** redir has joined #zope3-dev | 01:24 | |
| *** aclark|away is now known as aclark | 01:25 | |
| *** jodok has joined #zope3-dev | 01:26 | |
| *** rlo has joined #zope3-dev | 01:33 | |
| *** faassen has quit IRC | 01:37 | |
| *** redir has quit IRC | 01:41 | |
| *** greenman has quit IRC | 01:41 | |
| *** dobee has quit IRC | 01:48 | |
| *** Ariel_Calzada has quit IRC | 01:51 | |
| *** J1m has quit IRC | 01:56 | |
| *** Doc_Dan has joined #zope3-dev | 02:02 | |
| *** gstratton has quit IRC | 02:07 | |
| *** malthe has quit IRC | 02:10 | |
| *** rlo has quit IRC | 02:11 | |
| *** nathany has quit IRC | 02:12 | |
| *** aclark is now known as aclark|away | 02:12 | |
| *** alecm_ has joined #zope3-dev | 02:34 | |
| *** alecm has quit IRC | 02:34 | |
| *** greenman has joined #zope3-dev | 02:39 | |
| *** alecm_ has quit IRC | 02:40 | |
| *** alecm has joined #zope3-dev | 02:41 | |
| *** alecm_ has joined #zope3-dev | 02:42 | |
| *** Ariel_Calzada has joined #zope3-dev | 02:42 | |
| *** alecm has quit IRC | 02:43 | |
| *** supton has quit IRC | 02:45 | |
| *** aclark|away is now known as aclark | 02:54 | |
| *** rmarianski has quit IRC | 03:00 | |
| *** deo has quit IRC | 03:01 | |
| *** alecm_ has quit IRC | 03:28 | |
| *** alecm has joined #zope3-dev | 03:31 | |
| *** redir has joined #zope3-dev | 03:37 | |
| *** rmarianski has joined #zope3-dev | 03:50 | |
| *** redir has quit IRC | 03:50 | |
| *** redir has joined #zope3-dev | 03:51 | |
| *** alecm has quit IRC | 03:54 | |
| *** redir has quit IRC | 03:55 | |
| *** redir has joined #zope3-dev | 03:56 | |
| *** b52laptop has quit IRC | 03:58 | |
| *** redir has quit IRC | 04:01 | |
| *** RaFromBRC has quit IRC | 04:12 | |
| *** rmarianski has quit IRC | 04:21 | |
| *** alecm has joined #zope3-dev | 04:31 | |
| *** alecm has quit IRC | 04:33 | |
| *** alecm has joined #zope3-dev | 04:34 | |
| *** stub has joined #zope3-dev | 04:46 | |
| *** Ariel_Calzada has quit IRC | 04:49 | |
| *** niemeyer has quit IRC | 04:55 | |
| *** aclark is now known as aclark|away | 04:56 | |
| *** stub has quit IRC | 05:12 | |
| *** alecm has quit IRC | 05:22 | |
| *** alecm has joined #zope3-dev | 05:37 | |
| *** alecm has quit IRC | 05:53 | |
| *** alecm has joined #zope3-dev | 05:59 | |
| *** alecm is now known as alecm|dinner | 06:01 | |
| *** greenman has quit IRC | 06:09 | |
| *** Doc_Dan has quit IRC | 06:16 | |
| *** alecm|dinner has quit IRC | 06:23 | |
| *** stub has joined #zope3-dev | 06:25 | |
| *** huajie has joined #zope3-dev | 07:09 | |
| *** cguardia has joined #zope3-dev | 07:27 | |
| *** baijum has joined #zope3-dev | 07:27 | |
| *** cguardia has left #zope3-dev | 07:27 | |
| *** projekt01 has joined #zope3-dev | 07:43 | |
| *** rcrafton has quit IRC | 07:43 | |
| *** projekt01 has quit IRC | 07:45 | |
| *** alecm has joined #zope3-dev | 07:57 | |
| *** chacha_chaudhry has joined #zope3-dev | 07:58 | |
| *** huajie has quit IRC | 08:02 | |
| *** huajie has joined #zope3-dev | 08:03 | |
| *** jukart has joined #zope3-dev | 08:05 | |
| *** greenman has joined #zope3-dev | 08:15 | |
| *** jukart has quit IRC | 08:25 | |
| *** alecm has quit IRC | 08:27 | |
| *** dobee has joined #zope3-dev | 08:41 | |
| *** sorin has joined #zope3-dev | 08:45 | |
| *** sorin is now known as sorindregan | 08:45 | |
| *** jukart has joined #zope3-dev | 08:50 | |
| *** jfroche has joined #zope3-dev | 08:52 | |
| *** schwendinger has joined #zope3-dev | 08:54 | |
| *** zagy has joined #zope3-dev | 08:58 | |
| *** quodt has joined #zope3-dev | 09:01 | |
| *** jodok has joined #zope3-dev | 09:13 | |
| *** ghendi has joined #zope3-dev | 09:23 | |
| *** agroszer has joined #zope3-dev | 09:24 | |
| *** timte has joined #zope3-dev | 09:41 | |
| *** philiKON has joined #zope3-dev | 09:50 | |
| *** jodok has quit IRC | 09:52 | |
| *** davidstryker has joined #zope3-dev | 09:57 | |
| *** davidstryker has left #zope3-dev | 09:57 | |
| *** schwendinger has quit IRC | 09:57 | |
| *** philiKON has quit IRC | 10:00 | |
| *** quodt has quit IRC | 10:01 | |
| *** quodt has joined #zope3-dev | 10:02 | |
| *** greenman has quit IRC | 10:09 | |
| *** greenman has joined #zope3-dev | 10:12 | |
| *** jodok has joined #zope3-dev | 10:12 | |
| *** jfroche has quit IRC | 10:17 | |
| *** stub has quit IRC | 10:17 | |
| *** stub has joined #zope3-dev | 10:18 | |
| *** regebro has joined #zope3-dev | 10:19 | |
| *** gstratton has joined #zope3-dev | 10:19 | |
| *** gstratton has joined #zope3-dev | 10:20 | |
| *** gstratton has quit IRC | 10:25 | |
| *** schwendinger has joined #zope3-dev | 10:26 | |
| *** stub has quit IRC | 10:48 | |
| *** MJ has joined #zope3-dev | 10:52 | |
| *** tarek has joined #zope3-dev | 11:01 | |
| *** ktwilight_ has joined #zope3-dev | 11:08 | |
| *** ktwilight has quit IRC | 11:21 | |
| *** ktwilight has joined #zope3-dev | 11:23 | |
| *** ghendi has quit IRC | 11:27 | |
| *** ignas has joined #zope3-dev | 11:32 | |
| *** ktwilight_ has quit IRC | 11:38 | |
| *** jfroche has joined #zope3-dev | 11:56 | |
| *** pelle__ has joined #zope3-dev | 12:03 | |
| *** pelle__ has joined #zope3-dev | 12:03 | |
| timte | I buildout.cfg extends base.cfg and both files contain a develop= line, should they be merged or should one of them win? | 12:06 |
| timte | If | 12:06 |
| *** b52laptop has joined #zope3-dev | 12:08 | |
| zagy | timte: one wins | 12:20 |
| zagy | everything else would confuse me :) | 12:20 |
| *** goschtl has joined #zope3-dev | 12:21 | |
| timte | because it extends I expect them to be merged | 12:21 |
| zagy | well, different options are merged | 12:21 |
| zagy | also, if develop would be merged, how would you specify to not merge it? | 12:22 |
| *** vlado has joined #zope3-dev | 12:28 | |
| timte | if I extend something I say that I want the stuff in there | 12:29 |
| *** schwendinger has quit IRC | 12:29 | |
| timte | if you don't want that develop egg it should probably not be in base.cfg that you extend | 12:30 |
| timte | now I had to rename devel to develeggs and then do devel=${buildout:develeggs} in both files in order to not get circular references | 12:33 |
| *** schwendinger has joined #zope3-dev | 12:34 | |
| *** stub has joined #zope3-dev | 12:53 | |
| *** aclark|away is now known as aclark | 12:58 | |
| *** mkerrin has joined #zope3-dev | 12:59 | |
| *** Ariel_Calzada has joined #zope3-dev | 13:02 | |
| *** dunny has quit IRC | 13:03 | |
| *** stub has quit IRC | 13:05 | |
| *** jodok has quit IRC | 13:12 | |
| *** markusleist has joined #zope3-dev | 13:22 | |
| *** chacha_chaudhry has quit IRC | 13:22 | |
| *** jodok has joined #zope3-dev | 13:28 | |
| *** MJ is now known as MJ|lunch | 13:30 | |
| *** regebro is now known as regebro|lunch | 13:37 | |
| *** ghendi has joined #zope3-dev | 13:39 | |
| *** stub has joined #zope3-dev | 13:39 | |
| *** instantfoo has quit IRC | 13:47 | |
| *** instantfoo has joined #zope3-dev | 13:47 | |
| *** MJ|lunch is now known as MJ | 13:53 | |
| *** deo has joined #zope3-dev | 14:03 | |
| *** stub has quit IRC | 14:09 | |
| *** Ariel_Calzada has quit IRC | 14:16 | |
| *** pyqwer has joined #zope3-dev | 14:17 | |
| *** malthe has joined #zope3-dev | 14:18 | |
| *** d2m has joined #zope3-dev | 14:20 | |
| *** d2m has left #zope3-dev | 14:20 | |
| *** alga has joined #zope3-dev | 14:21 | |
| *** mgedmin has joined #zope3-dev | 14:24 | |
| timte | zagy: but it seems like parts option values are merged? | 14:25 |
| *** hazmat has quit IRC | 14:27 | |
| *** niemeyer has joined #zope3-dev | 14:28 | |
| *** hazmat has joined #zope3-dev | 14:30 | |
| *** ChanServ sets mode: +o hazmat | 14:30 | |
| *** regebro|lunch is now known as regebro | 14:33 | |
| *** MJ has quit IRC | 14:36 | |
| zagy | timte: really? wuah ;) | 14:37 |
| timte | wonder if the appropriate list to send an email to would be zope-dev or zope3-users? | 14:39 |
| zagy | zope-dev | 14:40 |
| timte | then they go crazy and say that this is a list for development OF zope :) | 14:40 |
| zagy | sure | 14:41 |
| zagy | *G | 14:41 |
| baijum | timte, if it is zc.buildout don't post it to zope-dev list, instead use distutils-sig list: http://mail.python.org/mailman/listinfo/distutils-sig | 14:43 |
| timte | oh | 14:43 |
| timte | hmm, distutils? | 14:44 |
| timte | ok | 14:45 |
| *** stub has joined #zope3-dev | 14:46 | |
| baijum | yep, distutils-sig | 14:46 |
| timte | baijum: but perhaps you know the answer already :) | 14:47 |
| timte | darn, I have to go | 14:47 |
| *** sorindregan has quit IRC | 14:47 | |
| baijum | timte: actually what you expected, merged the values ? | 14:48 |
| *** sorin has joined #zope3-dev | 14:49 | |
| baijum | or override ? | 14:49 |
| *** sorin is now known as sorindregan | 14:49 | |
| baijum | timte, anyway..I do not understand your question well..so better to ask in that list.. | 14:51 |
| *** projekt01 has joined #zope3-dev | 14:51 | |
| *** MJ has joined #zope3-dev | 14:58 | |
| *** greenman has quit IRC | 15:04 | |
| *** benji has joined #zope3-dev | 15:15 | |
| *** lucielejard has joined #zope3-dev | 15:28 | |
| *** harobed has joined #zope3-dev | 15:36 | |
| *** fcorrea has joined #zope3-dev | 15:38 | |
| *** huajie has quit IRC | 15:48 | |
| malthe | hmm when trying to use a Zope 3 zpt macro from a Zope 2 zpt I get "Unauthorized: You are not allowed to access 'a particular list' in this context" | 15:54 |
| *** Pan^ has quit IRC | 15:56 | |
| *** jfroche has quit IRC | 16:00 | |
| *** stub has quit IRC | 16:09 | |
| *** fcorrea has quit IRC | 16:09 | |
| *** jfroche has joined #zope3-dev | 16:10 | |
| *** J1m has joined #zope3-dev | 16:10 | |
| *** redir has joined #zope3-dev | 16:13 | |
| *** stub has joined #zope3-dev | 16:16 | |
| *** stub has quit IRC | 16:20 | |
| *** projekt01 has quit IRC | 16:21 | |
| *** stub has joined #zope3-dev | 16:22 | |
| *** rlo has joined #zope3-dev | 16:23 | |
| *** rcrafton has joined #zope3-dev | 16:25 | |
| *** alga has quit IRC | 16:27 | |
| *** stub has quit IRC | 16:28 | |
| *** stub has joined #zope3-dev | 16:28 | |
| *** whit|out has quit IRC | 16:29 | |
| *** redir has quit IRC | 16:30 | |
| *** hazmat has quit IRC | 16:39 | |
| *** replicant has joined #zope3-dev | 16:39 | |
| *** whit has joined #zope3-dev | 16:40 | |
| *** stub has quit IRC | 16:43 | |
| *** whit has quit IRC | 16:44 | |
| *** stub has joined #zope3-dev | 16:47 | |
| *** stub has quit IRC | 16:53 | |
| *** aclark is now known as aclark|away | 16:54 | |
| *** stub has joined #zope3-dev | 16:54 | |
| *** thruflo has joined #zope3-dev | 16:58 | |
| *** rlo has quit IRC | 16:59 | |
| *** alecm has joined #zope3-dev | 17:03 | |
| *** whit has joined #zope3-dev | 17:08 | |
| *** jfroche has quit IRC | 17:13 | |
| *** jfroche has joined #zope3-dev | 17:14 | |
| timte | In a buidout, can I refer to the parent that I extend? | 17:16 |
| timte | so I can use for instance ${parent:buildout:develop} ? | 17:17 |
| thruflo | could someone point me to example usage of the zope.sendmail package? | 17:18 |
| mgedmin | hm | 17:18 |
| thruflo | i can see that there's a zcml directive defined in zope.sendmail.meta.zcml for a smtpMailer but I can't find docs on what to do with that | 17:18 |
| mgedmin | I know how to use zope.sendmail, but I'm not sure I could find an example online | 17:19 |
| thruflo | i basically want to expose a view class that sends an email... | 17:19 |
| mgedmin | the design of zope.sendmail is not the best, and I'm partially to blame | 17:19 |
| thruflo | you coded the package? | 17:20 |
| mgedmin | parts of it | 17:20 |
| mgedmin | during one of the early zope 3 sprints | 17:20 |
| mgedmin | basically, you need two zcml directives | 17:20 |
| mgedmin | one to register a mailer, and one to register a mail delivery utility | 17:20 |
| mgedmin | then in your code you getUtility(IMailDelivery, name='name-of-your-util') and hand the email message to it | 17:20 |
| mgedmin | I'll write up a short README | 17:21 |
| *** alecm has quit IRC | 17:21 | |
| thruflo | via it's send method? | 17:21 |
| mgedmin | yes | 17:21 |
| mgedmin | I have working code in front of me, but it's not open source | 17:21 |
| thruflo | well let that be a lesson to you :p | 17:22 |
| thruflo | i was slightly confused by the comment in zope.sendmail.configure.zcml | 17:23 |
| *** alecm has joined #zope3-dev | 17:24 | |
| *** jfroche has quit IRC | 17:24 | |
| lisppaste6 | thruflo pasted "sendmail configure.zcml" at http://paste.lisp.org/display/49803 | 17:24 |
| thruflo | i would have presumed not to change the config of the zope src but to have includes app specifics like queue dir in my zope instance | 17:26 |
| thruflo | however I may not be understanding things correctly | 17:26 |
| mgedmin | no, you don't need to change anything in your zope sources | 17:27 |
| mgedmin | but you need to define those two utilities in your site.zcml | 17:27 |
| thruflo | right ok | 17:27 |
| *** sorindregan has quit IRC | 17:27 | |
| mgedmin | I see zope.sendmail.interfaces has some description | 17:27 |
| * thruflo nods | 17:27 | |
| mgedmin | oh dear, it's more complicated than I remembered | 17:34 |
| mgedmin | (the message formatting bit, not the actual sending bit) | 17:34 |
| mgedmin | the stdlib 'email' module is not very unicode friendly: http://mg.pov.lt/blog/unicode-emails-in-python.html | 17:35 |
| thruflo | yup, saw some discussion on that | 17:35 |
| *** b52laptop has quit IRC | 17:36 | |
| *** b52laptop has joined #zope3-dev | 17:36 | |
| * thruflo attempts to test his getUtility(IMailDelivery, name='name-of-your-util') | 17:37 | |
| *** baijum has quit IRC | 17:45 | |
| * thruflo discovers examples 16.3.4 & 16.3.5 in web component development 2nd edn | 17:48 | |
| thruflo | (tx for the help again mgedmin - much appreciated!) | 17:51 |
| *** malthe has quit IRC | 17:51 | |
| *** rmarianski has joined #zope3-dev | 17:52 | |
| *** markusleist has quit IRC | 17:55 | |
| *** jsadjohnson_ has quit IRC | 18:01 | |
| *** jsadjohnson has joined #zope3-dev | 18:01 | |
| *** nathany has joined #zope3-dev | 18:07 | |
| mgedmin | thruflo: http://svn.zope.org/zope.sendmail/trunk/src/zope/sendmail/README.txt?view=auto | 18:14 |
| mgedmin | I'd appreciate feedback | 18:14 |
| mgedmin | especially if you find any inaccuracies | 18:14 |
| mgedmin | I based the examples on working code from a zope 3.2-based app, when zope.sendmail was still zope.app.mail | 18:15 |
| mgedmin | there've been changes made to zope.sendmail since then (e.g. I noticed it now has TLS support) | 18:15 |
| *** sm has quit IRC | 18:16 | |
| *** sm has joined #zope3-dev | 18:16 | |
| mgedmin | aargh, right, I noticed one problem myself | 18:17 |
| *** norro has joined #zope3-dev | 18:19 | |
| *** jsadjohnson has quit IRC | 18:21 | |
| * thruflo tests with the code | 18:23 | |
| thruflo | in the readme | 18:23 |
| *** jsadjohnson has joined #zope3-dev | 18:24 | |
| *** pelle__ has quit IRC | 18:31 | |
| *** goschtl has quit IRC | 18:32 | |
| *** pelle__ has joined #zope3-dev | 18:33 | |
| *** pelle__ has quit IRC | 18:36 | |
| *** aclark|away is now known as aclark|10 | 18:42 | |
| *** jsadjohnson_ has joined #zope3-dev | 18:42 | |
| *** jfroche has joined #zope3-dev | 18:43 | |
| *** pyqwer has quit IRC | 18:48 | |
| *** jsadjohnson has quit IRC | 18:49 | |
| *** cguardia has joined #zope3-dev | 18:52 | |
| *** pbugni has joined #zope3-dev | 18:52 | |
| *** sm has quit IRC | 18:52 | |
| *** sm has joined #zope3-dev | 18:54 | |
| thruflo | hmm | 18:55 |
| lisppaste6 | thruflo pasted "dovecot ready?" at http://paste.lisp.org/display/49810 | 18:56 |
| thruflo | SMTPConnectError: (-1, 'Dovecot ready.') | 18:56 |
| *** ignas has quit IRC | 19:01 | |
| thruflo | mgedmin: that code works fine for me and the readme makes perfect sense to me. the only suggestion I would make is that the maildelivery queuepath="var/mailqueue" should be queuepath="../var/mailqueue" seeings how it's in a file in the etc directory - ie: I have nothing really to add! | 19:07 |
| mgedmin | actually, I've no idea what the relative paths are relative to | 19:08 |
| mgedmin | I suspect $PWD from where you start the server | 19:08 |
| mgedmin | I tend to place absolute paths there, just in case | 19:08 |
| mgedmin | the dovecot error is strange-ish | 19:09 |
| mgedmin | afaik dovecot is an imap/pop3 server | 19:09 |
| mgedmin | it shouldn't be listening on port 25 | 19:09 |
| * thruflo nods - running it here on osx using ./bin/runzope i find I have to use the ../ from a directive in etc/overrides.zcml but presumably people can tweak that as they see fit | 19:10 | |
| thruflo | ^ yup, I was using port 110 | 19:10 |
| thruflo | changing to default 25 got me a successful test email through :) | 19:10 |
| *** malthe has joined #zope3-dev | 19:13 | |
| *** harobed has quit IRC | 19:22 | |
| *** malthe is now known as malthe|away | 19:23 | |
| *** vlado has quit IRC | 19:35 | |
| *** pbugni has quit IRC | 19:36 | |
| *** gstratton has joined #zope3-dev | 19:38 | |
| *** gstratton has joined #zope3-dev | 19:39 | |
| *** MJ has quit IRC | 19:45 | |
| *** jodok has quit IRC | 19:48 | |
| *** pan has joined #zope3-dev | 19:51 | |
| *** jsadjohnson_ has quit IRC | 19:53 | |
| *** tarek_ has joined #zope3-dev | 19:53 | |
| *** jukart has quit IRC | 20:00 | |
| *** supton has joined #zope3-dev | 20:07 | |
| *** tarek has quit IRC | 20:09 | |
| *** RaFromBRC has joined #zope3-dev | 20:18 | |
| *** agroszer has quit IRC | 20:18 | |
| *** bung_vijay_ has joined #zope3-dev | 20:22 | |
| *** mgedmin has quit IRC | 20:24 | |
| *** dunny has joined #zope3-dev | 20:24 | |
| *** jfroche has quit IRC | 20:51 | |
| *** gstratton has quit IRC | 21:05 | |
| *** thruflo has left #zope3-dev | 21:12 | |
| *** dobee has quit IRC | 21:23 | |
| *** whit is now known as meatloaf | 21:30 | |
| *** MJ has joined #zope3-dev | 21:34 | |
| *** dobee has joined #zope3-dev | 21:41 | |
| *** ghendi has quit IRC | 21:51 | |
| *** _tarek_ has joined #zope3-dev | 21:51 | |
| *** norro_ has joined #zope3-dev | 21:56 | |
| *** mkerrin has quit IRC | 21:57 | |
| *** MrTopf has joined #zope3-dev | 22:01 | |
| *** gnosis has joined #zope3-dev | 22:03 | |
| *** Ariel_Calzada has joined #zope3-dev | 22:05 | |
| *** tarek_ has quit IRC | 22:06 | |
| *** pbugni has joined #zope3-dev | 22:11 | |
| *** quodt has quit IRC | 22:11 | |
| *** meatloaf is now known as whit | 22:12 | |
| *** deo has quit IRC | 22:16 | |
| *** deo has joined #zope3-dev | 22:17 | |
| *** dobee has quit IRC | 22:24 | |
| *** bung_vijay_ has quit IRC | 22:31 | |
| *** greenman has joined #zope3-dev | 22:51 | |
| *** dobee has joined #zope3-dev | 22:54 | |
| *** malthe|away is now known as malthe | 22:54 | |
| *** lucielejard has quit IRC | 23:07 | |
| *** aclark|10 is now known as aclark | 23:14 | |
| *** gnosis has quit IRC | 23:18 | |
| *** schwendinger has quit IRC | 23:19 | |
| *** tomus has quit IRC | 23:29 | |
| *** tomus has joined #zope3-dev | 23:30 | |
| *** norro_ has quit IRC | 23:33 | |
| *** norro has quit IRC | 23:39 | |
| *** MrTopf has quit IRC | 23:52 | |
| *** ignas has joined #zope3-dev | 23:53 | |
| *** dunny has quit IRC | 23:57 | |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!