similar to: 0.99.7 out

Displaying 20 results from an estimated 1000 matches similar to: "0.99.7 out"

2004 Jun 14
1
vpopmail and open smtp relay
I'm using vpopmail's POP-before-SMTP auth, but dovecot don't support it, so I'm wrote this patch ============================================================== diff -Naur dovecot-0.99.10.5/src/auth/auth-login-interface.h dovecot-0.99.10.5-patched/src/auth/auth-login-interface.h --- dovecot-0.99.10.5/src/auth/auth-login-interface.h Sun May 18 16:26:28 2003 +++
2002 Nov 24
2
vpopmail support?
Well, I read that back in 0.98 or so vpopmail support should work so I assumed it would be enabled in 0.99 but here's what I get. gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../src/lib -I/usr/local/vpopmail/include -g -O2 -Wall -W -g -O2 -Wall -W -c userinfo-vpopmail.c In file included from userinfo-vpopmail.c:12: /usr/local/vpopmail/include/vpopmail.h:133: syntax error before `*' ***
2015 Sep 01
2
ldapcmp issue
Hi all, It seems "samba-tool ldapcmp" does not support too much items in Samba's database. Playing for a while with DB I was never able to run ldapcmp successfully. So yesterday I installed a platform to fill piece by piece my two small DCs and to run ldapcmp. The process follows. Test platform: 2 DCs using Debian 8.1 "net install" with only system tools, up to date,
2003 Jan 17
1
Unable to Log in on FreeBSD server?
Hello! I recently compiled dovecot 0.99.7 on a FreeBSD 4.3 server, and have been having problems with logging in and password authentication. a. I can't seem to get it to compile MD5 support -- it only seems to support plain, plain-file, and pam. b. Whenever I try to log in, I always get something along the following lines in /var/log/messages .... Jan 16 17:52:15 akira imap-login:
2006 Jan 18
2
%d interpolation problem fixed
On 6 Dec 2005, at 17:21, Timo Sirainen wrote: > On Tue, 2005-12-06 at 17:11 +0000, William Ross wrote: >> On 6 Dec 2005, at 16:51, Timo Sirainen wrote: >> >>> On Fri, 2005-10-28 at 17:52 +0200, Riccardo Bini wrote: >>>>> I just wrote this: http://wiki.dovecot.org/Quota >>>> Well... but you have to correct %n with vpopmail backend. %u in the
2002 Dec 22
1
[Fwd: ./configure options..]
Oops, wrong address.. -------- Original Message -------- Message-ID: <3E0618CB.1060106 at is.a.fakepope.com> Date: Sun, 22 Dec 2002 11:55:55 -0800 From: Jesse Peterson <erage at is.a.fakepope.com> User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1) Gecko/20020901 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dovecot Mail List <dovecot at procontrol.fi> Subject:
2014 Oct 30
1
vpopmail, open_smtp_relay and non-PLAIN auth mechs
I've noticed that if using the vpopmail auth setup, that the roaming-user functionality provided via open_smtp_relay() is only done if the auth mechanism is PLAIN. For example, if the client authenticates via DIGEST-MD5, the open relay file is not updated, as it should be. This is due to the call to open_smtp_relay only being done via vpopmail_verify_plain(). Instead, imo, that call should be
2008 Oct 17
1
Minor feature request: Let 'R CMD co*nfig' tell me where the INCLDIR is
On Debian / Ubuntu / ... we have [1] edd at ron:~> R CMD config --cppflags -I/usr/share/R/include edd at ron:~> but I seem to have no way to learn 'just' the /usr/share/R/include part from R CMD config. It would be nice if something like R CMD config R_INCL_DIR could be added as we do have 'LIBnn'. Obviously, this is nothing we need now before 2.8.0. But if it
2006 Jun 14
3
where to define a struct
Hello, I''m trying to use the following Struct in my web app: UserInfo = Struct.new( "UserInfo", :first_name, :last_name, :email, :domain_name ) I placed this in the environment.rb, thinking that it should be initialized only once. But when I try to access it from within my controller, I get: undefined method `UserInfo'' for #<UserController:0x243ad5c>. so
2009 May 25
1
Help --- My phone number field saves blank
I have a phone field in my table. But in my form i have two text boxes to get the phone number and the country code like below Enter country code ----- Enter phone code ------ In my table i have to save the phone code field after joining the above values with "-" symbol. Example => 0225-25874255 I dont have table field for country_code . So i created like below attr_accessor
2005 Apr 02
4
1.0-test66
http://dovecot.org/test/ I've still lots of mails in my INBOX and in this list that I should be looking into.. But here's a release that fixes at least some things. Maybe I'll make another one tomorrow.. Most importantly keyword code was changed a lot. It's now faster and less buggy. The keywords are also finally written into mbox, and keyword changes in the mbox are picked up.
2009 Nov 11
6
HeLp oN my database
Using my application i can able to save a new record into my db but i cannot update a existing record into my db. using update query i can able to update my records. but using update_attributes it doesnot update my records. even i cant find any errors in logs or something. throughout my application i can able to save a new record but unable to update my existing records. actually i have changed
2008 Oct 27
8
pagination in ajax
hi, I am curently using rails version 2.1.1. Currently i have done simple pagination using will_paginate plugin.it works.but when i am trying pagination using ajax with help of will_paginate plugin it wont works.i am also using RemoteLinkRenderer helper, but it gives an error uninitialized constant RemoteLinkRenderer. can anyone provide any tutorial or sample code so that i can
2005 May 08
3
1.0-test69
http://dovecot.org/test/ - Several mbox fixes, upgrade recommended for test68 mbox users - Possibly fixes some IMAP hangs where Dovecot just stopped replying - Fixed delay-newmail workaround. It was badly broken before. And somewhat off topic advertisement: I got a bit distracted from Dovecot a week ago when a guy started mailing me about wanting to write an irssi2 client as a project to
2009 Jul 07
1
Adding data in two tables simul;taneously with Validations
Hi All, I have 2 tables 1] user_infos & 2] users class UserInfo has_one :user validates_presence_of :city class User belongs_to :user_info validates_presence_of :first_name i write following code in my create method. @user_info = UserInfo.new(params[:user_info]) @user=@user_info.build_user(:first_name=>'''') if @user_info.save else end now what i want is to
2008 Feb 14
4
How do I access this parameter?
Hi, I have a form for creating users ... <% form_tag ''userconfirm'' do -%> <!-- more code --> <p><label for="user_login">Username</label><br/> <%= text_field ''user'', ''login'' %></p> <p><label for="user_password">Password</label><br/> <%=
2006 Jan 04
7
variables in layouts
I have a layout that provides the basic outline of each page in my app. It has a title, footer and a navigation bar. In the title I want to put the name of the current user that is logged in. I could do something like @session[:username] but I would rather encapsulate that into a single variable so that I can change the key in the session map if I want without having to goto each page that
2019 Dec 23
3
macintosh disconnect problem
Hi all, We're having trouble with Macintosh clients (at least) being disconnected from Samba. Below is one macintosh console output when this happens, filtered by "smb". (Yeah, maybe some clues are missing...) ATM I don't see anything that stands out in the Samba log file. However one thing I don't see in the samba log file is session disconnects. Does anyone
2011 Mar 02
1
Registering Cisco 7942G IP phone with Asterisk!.
Hi, ? We are new to IP phone firmware upgradation (Sorry if it is a re-post of previous question(s)). ? Recently we have bought a cisco 7942G IP phone. It currently has SIP 42.9-0-2SR1S firmware loaded on it. We do not see any option to configure a SIP Proxy where we can provide SIP Server (Asterisk PC/Device)? IP address (with current firmware on it) to register it with Asterisk. ? Do we need to
2006 Mar 10
2
7970 Configs
Anyone have the 7970 xml config for sip yet? Aaron