Displaying 20 results from an estimated 200 matches similar to: "Postfix/Amavisd/Clamd - Mail send failing"
2013 Mar 10
8
BIND Setup Issue
Dear All
I have a CentOS 6.3 machine. I am trying to setup DNS BIND setup in that
machine. It is having a static global IP. I have done lot of reading ,
google search and tried all possible option, but still not able to resolve
the issue.
My named.conf looks as below.
*
*
*
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only
2013 Mar 13
6
Postfix (Roundcube client) sends mail, but not able to receive
Dear All
Recently I just setup postfix, dovecot, roundcube etc in a dedicated server.
>From roundcuble, I am able to send mail to my gmail account.
But from my gmail account, when sent mail to my mail id, that I setup
recently, I do not see that email in roundcuble inbox. Neither that mail
bounced back in gmail. Not sure, how do I debug this.
Kindly let me know how should I proceed to fix
2008 May 15
1
Warning about undocumented data sets
Hi, List,
Sorry in advance if this turns out to be a stupid question -- I've
been trying to work it out for awhile, and I don't have any new ideas
-- I'm very new to R documentation/ LATEX.
I am running "R CMD check " on a package that I am trying to write;
the only warning is:
* checking for missing documentation entries ... WARNING
Undocumented data sets:
Einter KG
All
2015 Jul 23
2
Can ogg file contain VP8 frames
Hi All
Is it a possible case that an ogg file contains VP8 frames.
I know ogg file generally contains vorbis, theora frames.
Recently I came across an ogg file that contains OPUS frames.
Is there any tool, that can take a webm file as input, and output an ogg
file with preferably only video (no audio) frames.
Please let me know.
Thanks
Austin
-------------- next part --------------
An HTML
2013 Mar 11
12
Postfix setup
Dear All
I am planning to setup mail server for my domain.
Which one is preferred postfix or sendmail.
I came across a link *
http://ostechnix.wordpress.com/2013/02/08/setup-mail-server-using-postfixdovecotsquirrelmail-in-centosrhelscientific-linux-6-3-step-by-step/
* for postfix mail setup.
It says,
Prerequisites:
- The mail server should contain a valid MX record in the DNS server.
2013 Mar 21
3
posfix admin issue
Dear All
I had successfully installed posfixadmin. I was able to login to postfix
admin and create email ids etc.
In something broken (not sure which one caused the issue), I am
experiencing below problem with postfix admin.
1. I am able to access domain/mailadmin page.
2. I can create admin accounts at domain/mailadmin/setup.php
3. I can see the admin login page by access
But when I enter my
2013 Mar 12
1
Postmap command
Dear All
While setting up postfix, at one point I need to do
postmap /etc/postfix/transport
But I get the output as
*bash: postmap: command not found*
I was just wondering is it something I need to install separately.
Thanks
Austin
2013 Mar 11
3
SSL Certificate
Dear All
This is my continuation of postfix setup.
Following link
http://campworld.net/thewiki/pmwiki.php/LinuxServersCentOS/Cent6VirtMailServerfor
postfix setup.
At one stage it says,
Configuring The Server Setup SSL Certificate
Now generate an SSL certificate for postfix and dovecot to have TLS
support. Replace mail.example.com with your server hostname.
> genkey --days 3650
2012 Oct 16
3
setting up postfix
This should be an easy one. I'm trying to get postfix going. I've
never done this before. I followed the directions at
http://wiki.centos.org/HowTos/postfix. I opened port 25:
iptables -I INPUT -p tcp -m tcp --dport 25 -j ACCEPT
Here's an attempt to send mail:
[motor at localhost motor]# mail -v larry.martell at gmail.com
Subject: test
test
.
EOT
larry.martell at gmail.com...
2015 Jul 22
1
Newbie question
I am new to ogg environment.
I am writing a parser for ogg files.
I am aware there is a parser available.
However I have been asked to write a new one.
I have two simulator phones say A and B.
After A and B call connect, A reads ogg file sends packet by packet to B.
B stores the packets and writes to a file.
As far as my understanding I am writing data to file properly.
But I am unable to play
2012 Jun 13
4
[LLVMdev] Assert in live update from MI scheduler.
Andy,
Thanks for reply. I was able to trace the problem to the MI DAG dep
constructor. See this:
SU(0): %vreg1<def> = COPY %vreg10<kill>; IntRegs:%vreg1,%vreg10
# preds left : 0
# succs left : 0
# rdefs left : 1
Latency : 1
Depth : 0
Height : 0
SU(1): %vreg10<def> = LDriw %vreg9<kill>, 0;
2001 Jun 05
2
a bug? (PR#968)
--T4sUOijqQbZv57TR
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Dear R,
I would like to report what I think is a bug in R. I am running R
within emacs on a Digital AlphaStation. See the version information
at the end of my R session for details. I also attach a copy of the
file that is read in the `read.table' command.
Here's my R session, with a few
2019 May 16
3
ALTREP: Bug reports
Hello,
I have encountered two bugs when using ALTREP APIs.
1. STDVEC_DATAPTR
>From RInternal.h file it has a comment:
/* ALTREP support */
> void *(STDVEC_DATAPTR)(SEXP x);
However, this comment might not be true, the easiest way to verify it is to
define a C++ function:
void C_testFunc(SEXP a)
> {
> STDVEC_DATAPTR(a);
> }
and call it in R via
> a=1:10
> >
2017 Dec 14
1
match and new columns
Hi Bill,
I put stringsAsFactors = FALSE
still did not work.
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE ,stringsAsFactors = FALSE)
tdat$D <- 0
tdat$E <- 0
tdat$D <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$B], 0))
tdat$E <- (ifelse(tdat$B %in% tdat$A, tdat$A[tdat$C], 0))
2017 Dec 13
2
match and new columns
Thank you Rui,
I did not get the desired result. Here is the output from your script
A B C Y D E
1 A12 B03 C04 0.70 0 0
2 A23 B05 C06 0.05 0 0
3 A14 B06 C07 1.20 0 0
4 A25 A23 A12 3.51 1 1
5 A16 A25 A14 2,16 4 4
On Wed, Dec 13, 2017 at 4:36 PM, Rui Barradas <ruipbarradas at sapo.pt> wrote:
> Hello,
>
> Here is one way.
>
> tdat$D <- ifelse(tdat$B %in% tdat$A,
2017 Dec 13
3
match and new columns
Hi all,
I have a data frame
tdat <- read.table(textConnection("A B C Y
A12 B03 C04 0.70
A23 B05 C06 0.05
A14 B06 C07 1.20
A25 A23 A12 3.51
A16 A25 A14 2,16"),header = TRUE)
I want match tdat$B with tdat$A and populate the column values of tdat$A
( col A and Col B) in the newly created columns (col D and col E). please
find my attempt and the desired output below
Desired output
2017 Dec 14
0
match and new columns
Use the stringsAsFactors=FALSE argument to read.table when
making your data.frame - factors are getting in your way here.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Wed, Dec 13, 2017 at 3:02 PM, Val <valkremk at gmail.com> wrote:
> Thank you Rui,
> I did not get the desired result. Here is the output from your script
>
> A B C Y D E
> 1 A12 B03 C04 0.70 0 0
2019 May 16
3
ALTREP: Bug reports
Hello Luke and Gabriel,
Thank you very much for your quick responses. The explanation of STDVEC is
very helpful and I appreciate it! For the wrapper, I have a few new
questions.
1. Like Luke said a mutable object is not possible. However, I noticed that
there is one extra argument *deep* in the function duplicate. I've googled
all the available documentation for ALTREP but I did not find
2019 May 16
0
ALTREP: Bug reports
Hi Jiefei,
Thanks for tryingout the ALTREP stuff and letting us know how it is going.
That said I don't think either of these are bugs, per se, but rather a
misunderstanding of the API. Details inline.
On Thu, May 16, 2019 at 11:57 AM ??? <szwjf08 at gmail.com> wrote:
> Hello,
>
> I have encountered two bugs when using ALTREP APIs.
>
> 1. STDVEC_DATAPTR
>
> From
2011 Sep 02
0
No subject
rly there would be a heavy penalty to launching a shell so you would want t=
o carefully evaluate the frequency this is executed on your system.<br />
<div class=3D"container">
<div class=3D"line number1 index0 alt2"><code class=3D"sql plain"><br />
DELIMITER @@</code></div>
<div class=3D"line number2 index1