similar to: Dovecot LDA and "undeliverable" emails

Displaying 20 results from an estimated 1000 matches similar to: "Dovecot LDA and "undeliverable" emails"

2008 Dec 22
1
POP3 Immediate Connection Termination
Hey everyone... Thanks in advance for any help. I seem to have the opposite problem that a lot of people have - I've been running Dovecot v. 1.0.10 quite successfully for IMAP for several months. However, one of our executives has her heart set on being able to get her mail via POP3. It looks to me like I have both configured, but when trying to log in via a POP3 or POP3s connection
2007 Sep 04
1
Variable scope in a function
Hello, I apologise in advance for this question; I'm sure it is answered in the documentation or this mailing list many times, however the answer has eluded me. I'm trying to write a function where I don't want external variables to be scoped in from the parent environment. Given this function: test_func = function() { if (exists("kat") == FALSE) {
2007 May 24
2
[LLVMdev] LLVM Developer Meeting
Hi, I just found out about this, and I'd like to attend. I'm in the process of getting to know llvm on a project I'm working on for Apple. Thanks, kat
2010 Dec 06
1
package ca/rgl for ubuntu?
hi, for some unknown reason i cannot install the package ca in R running in a ubuntu mint system. i keep getting the following error message: configure: error: missing required header GL/gl.h ERROR: configuration failed for package ?rgl? * removing ?/home/kat/R/i486-pc-linux-gnu-library/2.12/rgl? ERROR: dependency ?rgl? is not available for package ?ca? * removing
2012 Jun 11
3
Simple Binning of Values
Hello I am very new to R.  I have an R task to complete that I have not been able to find a straightforward answer to as of yet.  I have a list of values. I would like to count the number of values that are in one bin, the number that fall in the next bin, etc. For example My input file is:  123 48 342 442 43 232 32 129 191 147 I would like the output to be similar to:  0-100 3 100-200 4
2007 Nov 26
1
spss, string factors, selecting
Hi, I am having trouble with a large dataset I am importing from SPSS. The problem is I have to merge two datasets (which seems to be working OK) then select rows based on attributes. I have a column with either blank cells, B or E entered. I want to select all rows with E. I have other columns with numerical data which I will then do analyses on. data[column==" E"] does not
2008 Feb 09
2
[asterisk-dev] Monitor Asterisk using C
>Soumya Kat wrote: > What I would like to know is how to get information such as SIP users, > number of SIP connections and traffic associated with those from asterisk > using a C Code. >Russell Bryant > There is actually no good way to do this inside of Asterisk right now. It's > certainly all possible ... it's just software ... but there is no > straightforward
2012 Jul 02
2
Code scatter plot data from matrix with 3rd column
Hello I am looking for a simple way to plot my data from a matrix (or data frame) using a 3rd column as category to code the data points. for example: xyz 543240 104230 15901 203241 25781 3042340 357891 405670 45780 50531 Ideally, I'd like 0 or 1 to correspond to a color but I'd settle for a symbol at this point.  I have tried working with pch but can't get it to work. Thanks Kat 
2010 Nov 17
2
Problem with plotting diagnostics - Error in object$coefficients : $ operator is invalid for atomic vectors
hi all, after fitting a multiple linear regression model <- lm(y ~ a + b+ c+d) i wanted to plot diagnostics plot(model) but get the error message Error in object$coefficients : $ operator is invalid for atomic vectors. which does not make a lot of sense, since there is no "$" - i am working with an attached dataset. can anyone help, please?? thanks a lot, kat
2010 Dec 06
10
R crashes when making graphs
hi, i am running R with JGR and Deducer under Ubuntu Mint Lucid. since i updated to R 2.12 i can no longer make graphs - R just crashes. the full error report was posted to launchpad (https://bugs.launchpad.net/ubuntu/+source/openjdk-6/+bug/675905) without any success so far. anyone with a similar problem or helpful suggestions? thanks! kat
2015 Dec 15
5
How can I change the localSID for a SAMBA Server?
Hi Marc, We are running Samba Version 4.1.6-Ubuntu on Ubuntu 14.04 LTS. Is there any other specific information you need? Thanks, Byron -- *Byron Bogaert* *IT System Administrator* Wikimedia Foundation Imagine a world in which every single human being can freely share in the sum of all knowledge. Help us make it a reality! https://donate.wikimedia.org On Tue, Dec 15, 2015 at 12:53 PM, Marc
2005 Jan 05
3
Tuning string matching
Dear list, I spent about two hours searching on the message archive, with no avail. I have a list of people that have to pass an on-line test, but only a fraction of them do it. Moreover, as they input their names, the resulting string do not always match the names I have in my database. I would like to do two things: 1. Match any strings that are 90% the same Example: name1 <- "Harry
2015 Dec 15
2
How can I change the localSID for a SAMBA Server?
Hi Marc, We are working on building a Standalone Samba server on Ubuntu 14.04 LTS. Thanks, Byron On Dec 15, 2015 5:12 AM, "Marc Muehlfeld" <mmuehlfeld at samba.org> wrote: > Hello Byron, > > Am 14.12.2015 um 23:47 schrieb Byron Bogaert: > > I am trying to change the localSID for a SAMBA server, however I am > unable > > to. I have tried the command
2015 Dec 15
4
How can I change the localSID for a SAMBA Server?
Hi Rowland, We need to change the SID on a standalone server because it needs to also act as a File Server. The authentication comes from LDAP, and we have existing entries in LDAP for SID of the domain. Instead of change all the SID in ldap, we would like to be able to change it on the server. Hope this helps. Thanks, Byron -- *Byron Bogaert* *IT System Administrator* Wikimedia Foundation
2009 Jun 30
1
Question regarding SIP 183 "Session Progress" handling in Asterisk
Dear Asterisk community! I am having trouble with a project concerning the 183 Session Progress SIP messages. Asterisk seems to only accept these when there is also a Session Description (SDP) included in the message. I also verified this by looking at the code. However for a project we are working with a trunk to a third party system (Alcatel) and they are insisting that this behavior is
2007 Nov 01
3
Curry: proposed new functional programming, er, function.
Hi all (especially R-core) I suppose, With the introduction of the new functional programming functions into base I thought I'd ask for a Curry() function. I use a simple one that looks this: Curry = function(FUN,...) { .orig = list(...);function(...) do.call(FUN,c(.orig,list(...))) } This comes in really handy when using say, heatmap():
2006 Feb 14
2
AJAX on page load
Ok, I''m missing something obvious but after some reasonable looking in _The_ Rails book (sorry haven''t gotten the cookbook yet) and these archives I don''t see a solution to my question. Question: What is the cleanest way to load a div via AJAX when the page loads - no user action necessary. I don''t really want to hack in a hidden remote form or link that is
2015 Dec 15
1
How can I change the localSID for a SAMBA Server?
Our Global Configuration is as follows: #======================= Global Settings ======================= [global] workgroup = WIKIMEDIA netbios name = THEWIGGLE server string = %h server (Samba, Ubuntu) security = user dns proxy = no #### Debugging/Accounting #### log level = 2 log file = /var/log/samba/log.%m max log size = 1000 syslog = 0 panic action =
2004 Aug 06
1
Sample rates on ices
I'm trying to send out multiple streams. My encoder is a PII 233, so I have to conserve CPU cycles. I encoded my mp3s as 96kb/s with a 44.1 sampling rate. I send my 96k stream without reencoding and it sounds great. I also sned a 24k stream that is being reencoded from the 96k mp3s. It works pretty good, the load on my linux box is about 0.5 on average. However, the sampling rate is 8k.
2008 Nov 03
2
Theora 1.0 final release
Theora is a video codec with a small CPU footprint that offers easy portability and requires no patent royalties. While the Theora bitstream format was standardized in 2004 and our beta releases have been used by millions, this 1.0 release is an important milestone reflecting the maturity and stability of the Theora codebase. A number of leading multimedia web groups already support Theora.