Tagged Questions

3
votes
2answers
33 views

Bounced email parsing

I'm currently having a mess about with catching, parsing and sorting bounced emails. I have the basics set up nicely and it does what I want, which is nice... problem being is that there seems to be …
1
vote
3answers
64 views

Regular expression for bounce email message

I am looking for a regular expression (or other method if there is such a thing) for detecting bounce email messages. So far I have been going through our unattended mail box and adding strings that I …
1
vote
1answer
181 views

UIScrollView - (bounces = NO) seems to override (pagingEnabled = YES)

I have a UIScrollView with paging in it (so the typical model with a UIPageControl and dragging/flicking left and right between pages), and I've got that working fine. The weird thing is that when I …
0
votes
1answer
53 views

Tableview scrolling bounces back and hides the bottom cells.

I have a view that is shown under a navigation controller. The view contains one subview at the top portion and a table view at the bottom. The table might have rows that extend beyond the visible …
2
votes
2answers
406 views

How to write a php script that read bounce email?

I am doing a bounce-email handling with php. I have include the return path in the mail function, e.g: mail($to_address, $subject, $message, $headers, "-f".$return_path ); $return_path = …
1
vote
1answer
360 views

What is the behavior difference between return-path, reply-to and from?

On our mailing application we are sending emails with the following header: FROM: marketing@customer.com TO: subscriber1@domain1.com Return-PATH: bouncemgmt@ourcompany.com The problem that we are …
0
votes
1answer
97 views

Need help in getting the bouncing formula to work correctly.

I am creating a bouncing object that can bounce around a 2D rectangular room. I have read through the answer of the other question about using velocityX and velocityY instead of normal direction …
0
votes
1answer
66 views

How to generate traffic to test a bounce management tool?

What tools are available to generate bounce messages in order to test a bounce management tool? We want to test invalid addresses but we will like to test other error status codes.
0
votes
4answers
885 views

Bounce Email handling with PHP??

I am really new to this (not new to php). Here is my scenario: I have 2 emails accounts. admin@domain.com and bounce@domain.com. I want to send email to all my users with admin@domain.com but then …
1
vote
1answer
165 views

How to accurately parse smtp message status code (DSN)?

RFC1893 claims that status codes will come in the format below you can read more here. But our bounce management system is having a hard time parsing error status code from bounce messages. We are …
2
votes
9answers
429 views

Bouncing ball not conforming to Conservation of Energy Rule!!!

Hi all, I am currently busy on writing a small ball physics engine for my programming course in Win32 API and c++. I have finished the GDI backbuffer renderer and the whole GUI (couple of more things …
1
vote
3answers
125 views

Why it does not return to my return path??

I am using php, using mail function: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: admin@domain.com' . "\r\n"; …
0
votes
2answers
993 views

Using hit-test bouncing ball in action script 3

I have this code which makes the ball bounce, but what I am looking for is to shoot bullets from the ground and once they hit the ball they should bounce it back upwards. The goal is not to let the …