Tagged Questions

Postfix is a free, open-source, widely used cross-platform mail server, available on all common platforms.

learn more… | top users | synonyms

14
votes
3answers
332 views

C# generated IL for ++ operator - when and why prefix/postfix notation is faster

Since this question is about the increment operator and speed differences with prefix/postfix notation, I will describe the question very carefully lest Eric Lippert discover it and flame me! ...
8
votes
6answers
219 views

May I write {x,a,b}//Do[…,#]& instead of Do[…,{x,a,b}]?

I'm in love with Ruby. In this language all core functions are actually methods. That's why I prefer postfix notation – when the data, which I want to process is placed left from the body of anonymous ...
7
votes
4answers
4k views

How do I set up my Ubuntu VPS to send outgoing mail?

My VPS provider (Slicehost) doesn't provide an SMTP server. I use Google Apps to send and receive mail for my domains, but I want to be able to programmatically send e-mail. I've been Googling this ...
6
votes
3answers
1k views

Real world pre/post-order tree traversal examples

I understand pre-order, in-order, and post-order tree traversal algorithms just fine. (Reference). I understand a few uses: in-order for traversing binary search trees in order, pre-order for cloning ...
5
votes
8answers
140 views

Precedence of ++ and — operators in Java

I read from the official tutorial of Java that prefix and postfix ++ -- have different precedences: postfix: expr++ expr-- unary: ++expr --expr +expr -expr ~ ! Operators According to ...
5
votes
5answers
317 views

small language in python

I'm writing what might not even be called a language in python. I currently have several operators: +, -, *, ^, fac, @, !!. fac computes a factorial, @ returns the value of a variable, !! sets a ...
5
votes
5answers
3k views

Defining different types of numbers in C#

You can define a number in various ways in C#, 1F // a float with the value 1 1L // a long with the value 1 1D // a double with the value 1 personally I'm looking for which would a short, however ...
4
votes
5answers
664 views

Why does the postfix increment operator take a dummy parameter?

Have a look at these function signatures: class Number { public: Number& operator++ (); // prefix ++ Number operator++ (int); // postfix ++ }; Prefix doesn't take any parameter ...
4
votes
4answers
362 views

Handling Incoming Mail to Multiple Recipients in PHP

Alright, this may take a moment or two to explain: I'm working on creating an Email<>SMS Bridge (like Teleflip). I have a few set parameters to work in: Dreamhost Webhosting PHP 5 (without ...
4
votes
3answers
1k views

What does the postfix “_t” stand for in C? [closed]

Possible Duplicate: What does a type followed by _t (underscore-t) represent? While typing in my IDE (Xcode), autocomplete pops up already-defined words when I'm partway thru entering some ...
4
votes
4answers
2k views

How to differentiate (when overloading) between prefix and postfix forms of operator++? (C++)

Because I've overloaded the operator++ for an iterator class template<typename T> typename list<T>::iterator& list<T>::iterator::operator++() { //stuff } But when I try to ...
4
votes
3answers
1k views

Integrate postfix mail into my (python)webapp

I have a postfix server listening and receiving all emails received at mywebsite.com Now I want to show these postfix emails in a customized interface and that too for each user To be clear, all the ...
4
votes
2answers
5k views

How to monitor Postfix MTA Status

What is a good command to monitor a Postfix installation on a linux server? It should be one command that can be run from a command prompt in an SSH session and returns information about whether the ...
4
votes
5answers
994 views

Must an SMTP client provide the MTA a globally resolvable hostname in the HELO?

In short: I'm trying to figure out if I should tell a mail administrator of a friend's employer whether their mail configuration should be fixed, or if I should revise my own policy to be more liberal ...
3
votes
1answer
61 views

Why do i have to use “-f from@email.com” in the mail() function

Recently, one of my collegue started having issues sending mail from different hosts where we were developping sites. He then remembered a long time ago that using the 5th parameter, he can pass a "-f ...
3
votes
2answers
94 views

How to avoid my mails sent from PHP mail() being marked as spam?

I'm using the following to send registration e-mails: $subject = 'subject is here'; $message_raw = 'e-mail text'; $message = base64_encode($message_raw); $headers = 'MIME-Version: 1.0' . "\r\n"; ...
3
votes
1answer
65 views

is “mail command in linux” fire-and-forget or wait-until-mail-sent?

I'm trying to send mail from my application server using the following code FILE *mailer = popen("/usr/bin/mail -s 'Some subject here' user@domain", "w"); fprintf(mailer, "Hello %s,\nThis note is to ...
3
votes
1answer
116 views

Postfix Operator Overloading Order [closed]

Possible Duplicate: Undefined Behavior and Sequence Points I'm having trouble understanding the order of actions when overloading the postfix operator. Let's examine the two small examples ...
3
votes
2answers
120 views

pyparsing issue

Right now I have just started to use pyparsing to parse simple postfix expressions. At the moment, I got this far: from pyparsing import * integer = Word(nums) op = Word("+-*/^", max=1) space = ...
3
votes
1answer
363 views

SwiftMailer library performing slow

I'm trying to implement swiftmailer into this mailing system. my client has about 300k active emails that need to be sent on a semi regular basis. the system was originally configured for sendmail and ...
3
votes
3answers
382 views

how to send email from web app with mail() in php on CentOS (sendmail, postfix, …?)

We are building a web app and will need to send emails on a frequent basis using php's mail() function. We are using it to send mails when e.g. a user signs up for the app, when a client has a new ...
3
votes
1answer
710 views

Is there a better tool than postcat for viewing postfix mail queue files?

So I got a call early this morning about a client needing to see what email they have waiting to be delivered sitting in our secondary mail server. Their link for the main server had (still is) been ...
3
votes
3answers
1k views

Rails ActionMailer problems on Mac

I've been working on learning to use Rails the last couple days and I've run into something that I haven't been able to solve with Google. So I'm just creating a basic contact form that sends an ...
3
votes
1answer
914 views

PHP, postfix, sendmail, thunderbird for local dev only

Hey, I'm trying to get php's mail function working on my local dev box in such a way where all mail sent using mail(), regardless of recipient, would stay local and show up in a thunderbird account ...
2
votes
2answers
97 views

SOLVED: linux mail or PHP mail() doesn't reach some addresses

I'm trying to get my PHP scripts to send mail using mail() command, which I think uses the linux sendmail or mail command. I've tried both sending with the PHP mail() and linux command line mail ...
2
votes
0answers
45 views

Could an Applicative Language use Postfix Notation?

I've always found postfix languages like Factor to be far more readable than prefix (Lispy languages) and infix/postfix languages (all C-style languages, if we include both operators and functions). ...
2
votes
1answer
385 views

Rails 3 Postfix sending / receiving emails on same server using gmail

We have a rails 3 application running on vps using postfix for sending email. All emails for this domain name are hosted on Google Apps. All emails sent to domains other than the domain the app is ...
2
votes
2answers
118 views

UTF-8 characters not getting displayed

When i run my JUnit test case to invoke the standalone application which sends mail the characters are getting displayed properly in mail but when this application runs on a different machine through ...
2
votes
2answers
757 views

Postfix + MySQL ENCRYPT(), How does it verify the password with randomizing salt?

I've implemented my mail server as dictated here: http://library.linode.com/email/postfix/courier-mysql-ubuntu-9.10-karmic#configure_mail_aliases It works perfectly fine. My curiousity revolves ...
2
votes
1answer
387 views

C++ postfix evaluation with decimal points

I've got the shunting yard algorithm implemented (using code from wikipedia, modified to use stl stacks/queues), but now I'm wondering how it's going to evaluate decimals that I get from division. The ...
2
votes
1answer
693 views

Converting a prefix expression to postfix

I'm trying to implement a program that changes a prefix expression to a postfix one using recursion. I've written what I thought would work but instead of the output ab/c*de+f*- I get ...
2
votes
1answer
400 views

Postfix hangs when sending email

If I try to send an email as follows, the process hangs and nothing happens: >>> from django.core.management import setup_environ >>> from cube import settings >>> ...
2
votes
3answers
306 views

Which of the following postfix notations correctly represents infix sum 1+2+3+4?

I am testing an infix-to-postfix-to-infix converter and found some kind of uncertainty. For example, a simple infix sum 1 + 2 + 3 + 4 can be converted to postfix one 1 2 + 3 + 4 + assuming that ...
2
votes
3answers
171 views

What is needed to add emailing capabilities to web application?

I have java web application to which I'd like to add emailing capabilities, however, I'm unsure what is needed to accomplish this. Specifically I want my app to be able to: Send emails confirming ...
2
votes
1answer
318 views

How can I extract all conversations in a Postfix log from a particular client using awk?

I am trying to extract conversations from a Postfix log file based on the client that initiated them. This is the awk script that extracts the matching message IDs: awk '/client.host.name/ && ...
2
votes
1answer
764 views

Processing an Email Bounce back in CakePHP and Postfix

I'm trying to handle bounced message and send to a responsible System Administrator. I use CakePHP Email Component to send the message. On server side, I use postfix to transport the message. ...
2
votes
1answer
567 views

OpenDKIM or dkim-milter

I need to add DKIM to a Postfix installation. I've found two implementations that work with Postfix. OpenDKIM (http://www.opendkim.org/), and dkim-milter ...
2
votes
4answers
235 views

How do I test sending email from a web applicatoin on OSX?

I have a Django application running locally and I'd like to test the "send_mail()" functionality. Currently, I'm able to turn on postfix using the following command in Terminal: sudo postfix start ...
2
votes
5answers
147 views

What are All the Ways a Programmer Could use PHP to Send an Email?

I'm looking for a list of built in PHP functions that a programmer could use to send an email. The obvious answer here is mail(), but I'm also looking for a list of functions someone might use to ...
2
votes
1answer
212 views

Google marks seemingly perfect emails as spam

First post, have found many answers here, so hopes are high. The problem: Google marks seemingly correctly formatted emails from my apache/postfix server as spam. Sample email as follows; (I have ...
2
votes
5answers
394 views

Why is this Java operator precedence being ignored here?

The following code prints out "3", not "4" as you might expect. public class Foo2 { public static void main(String[] args) { int a=1, b=2; a = b + a++; ...
2
votes
3answers
3k views

XmlDocument.SelectSingleNode returns null for root node

I have several xml files whose postfix is not .xml, but .component Now I want to handle them in the c# program, but It seems that the c# cant even find the root element of these xml files var doc = ...
2
votes
11answers
1k views

i++ less efficient than ++i, how to show this?

I am trying to show by example that the prefix increment is more efficient than the postfix increment. In theory this makes sense: i++ needs to be able to return the unincremented original value and ...
2
votes
3answers
188 views

Why won't Perl let me chain a postfix loop from a postfix comparison?

This is ok: $foo++ if $condition; And this is ok: $foo++ for (1..10); But this isn't: $foo++ if $condition for (1..10); I find the latter quite readable if things aren't complicated, and it ...
2
votes
3answers
795 views

want email from my server (postfix) to an email address on my domain to be delivered to google apps

I have google apps for receiving email. I get inquiries from people on info@[my-domain.com], which email is hosted on google. Sometimes, I want my rails set-up to send emails from my own server, and ...
2
votes
5answers
419 views

Any reason I couldn't create a language supporting infix, postfix, and prefix functions, and more?

I've been mulling over creating a language that would be extremely well suited to creation of DSLs, by allowing definitions of functions that are infix, postfix, prefix, or even consist of multiple ...
1
vote
3answers
186 views

php mail() Goes to spam but when sent via SMTP Server it works fine?

I am currently setting up my webserver so then i can send emails via PHP Code, the problem i have is that the emails sent via php mail() always send to my gmail spam where as when im sending emails ...
1
vote
1answer
55 views

How does Actionmailer work without defining settings?

I'm working on a rails project and can't figure out how the mail system works. On the production server there is postfix installed, so I'm assuming thats how the emails are being sent (actually the ...
1
vote
0answers
45 views

PostFix Blacklist Configuration

I have setup up a basic email server using PostFix with Dovecot/IMAP. But i face some issue with the blacklist setup. below is my postfix main.cf smtpd_recipient_restrictions = check_sender_access ...
1
vote
3answers
130 views

Mac refusing to change hostname

I've been trying to figure out how to use postfix on my Mac and something has gone horribly wrong and I can't seem to fix it. I believe the problem is related to starting Postfix. Basically, the Mac ...

1 2 3 4 5 6