Displaying 4 results from an estimated 4 matches for "apparen".
Did you mean:
apparent
2004 Jan 30
9
Adtran 750 DID question.
Hello All,
I've mostly solved my DID problem from a few days ago. Apparenly the lines weren't configured properly. Now heres the next question. 12 E&M wink lines from telco. I have them all plugging into an Adtran 750 with FXS cards. The Adtran ports are configured DPO. How do I signal this from Zaptel. I have them setup E&M in zaptel.conf and EM_W in...
2005 Aug 05
1
Validator
...ors="1"). I''ll
investigate that this weekend, too.
Finally, one last little problem. It appears the C->ruby renamer isn''t
handling names like centreX properly. centreX should be converted to
centre_x as I understand it. The un_camelcase function in renamer.rb
apparenly only uncamelcases if the first characters are uppercase.
Thoughts?
Roy
2008 Mar 04
1
User Unknown Sendmail Error
I am totally stumped here. I have setup a dovecot user and I can telnet to
port 110 and login no problem with that user. When I try to send mail I get
an error from sendmail:
Mar 4 13:39:56 flashyhome sendmail[5014]: m24JdtGp005014: <paul at fleeky.com>...
User unknown
Now apparenly I need to setup the sendmail.mc file...which I have:
MAILER(smtp)dnl
MAILER(procmail)dnl
MAILER(dovecot)
And:
more /usr/share/sendmail-cf/mailer/dovecot.m4
######################*****##############
### DOVECOT Mailer specification ###
##################*****#####...
2008 Mar 21
4
Prototype.js event.stop(event) FF2 not working
stop: function(event) {
if (event.preventDefault) {
event.stopPropagation();
event.preventDefault();
} else {
event.returnValue = false;
event.cancelBubble = true;
}
}
/* br original
stop: function(event) {
Event.extend(event);
event.preventDefault();
event.stopPropagation();
event.stopped = true;
}
*/
};