The bounce tag has no wiki summary.
13
votes
2answers
6k 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 ...
12
votes
9answers
10k 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 ...
10
votes
9answers
3k views
send e-mail and check status
Using Java mail, I would like to send an e-mail and check the status. Possible statuses include:
Hard-bounce: No mail server found
Soft-bounce: Mail server found, but account not found
Success
Is ...
7
votes
3answers
1k views
Set email headers so bounced emails go to a specific address
From our rails app we send out some system-generated emails with the 'from' address set to noreply@ourdomain.com. If these bounce they get sent back to this address by our mail server. However, what ...
6
votes
5answers
367 views
Google Maps (JS-v3): How do I make my markers “fall from the sky”
Once I could have sworn I saw a demo of using Google Maps JavaScript API v3 to create an effect where it appeared your map marker icon fell from the sky and landed on the map.
I've searched and ...
6
votes
1answer
3k 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 ...
5
votes
4answers
119 views
Bouncing Ball logics
I've got a ball which bounces of walls. This bounce is simple, i just do this, ( code snippet )
if ( x - moveSpeed < 0 ) // Ball hit left wall
xVel *= -1;
However i also got a rectangle ...
5
votes
1answer
1k views
Android: Detect when ScrollView has finished scrolling and bouncing back?
I have a ScrollView which has two hidden images, one at the top and one at the bottom. In between there is a bunch of visible content.
What I need to do is make these images hidden by default but ...
4
votes
2answers
589 views
How to implement Sender ID when sending mails through C#?
I just heard Joel & Jeff talk about Sender ID in their podcast number 83, and it occurred to me that's just what I need for a site I'm working on.
Approximately 90% of all e-mails sent from the ...
4
votes
2answers
643 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 ...
3
votes
1answer
555 views
How to send emails with a Return Path in .net 3.5
Can any one guide me on how i can send emails with a return path in ASP.net 3.5 / C# 3.5. I know this was possible few years back but now due to spoofing issues this is not possible. I have been ...
3
votes
9answers
1k views
Bouncing ball not conforming to Conservation of Energy Rule!
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 to ...
2
votes
1answer
81 views
Jquery bounce image
I implemented this code to several websites about a year ago, but lately it hasn't been working.
In Jsfiddle I figured out it still works with jQuery 1.4 but not with later versions.
Does anyone know ...
2
votes
1answer
64 views
+50
jquery bounce effect breaks inline alignment of list
I am trying to make some animations with the main navigation of my site. With this, I would want to apply a bouncing effect as the navigation menu item is hovered. This is the structure of my ...
2
votes
1answer
96 views
Make downloads dock icon bounce programmatically
How can I make the dock Downloads icon bounce programmatically? Notice that I don't want my app icon to bounce, but only Downloads' icon.
In particular, I'm downloading a file from my app to ...
2
votes
2answers
70 views
How to apply gravity when an object fall?
I have an object(which is a ball) having its position at the top of the screen that fall directly whenever I start running the program. The problem is that the ball fall to its constant speed, I want ...
2
votes
2answers
796 views
How to turn off UIWebView horizontal bounce
Simple problem, I have a webview that is supposed to hold just an image for the user to be able to zoom in and out. To keep my look clean, I want to completely disable bouncing on this view, but ...
2
votes
1answer
363 views
UIScrollView not bouncing vertical when scrolled to top
i have a weird issue with a UIScrollView and a UIWebView in it.
First my setup:
I subclassed a UIView and added the following code to it:
.h
@interface MySubclassedView : UIView {
...
2
votes
1answer
590 views
How can I cancel a UIScrollView zoom bounce?
I'm using a zooming UIScrollView to show images in my iPad app. The zooming works great, with a pinch making an image smaller or bigger as appropriate. I also have bouncesZoom enabled so that it ...
2
votes
1answer
215 views
jQuery Bounce In Place
I need my list item elements to bounce in place and not fall all over each other.
I created a JSFiddle of what I mean: http://jsfiddle.net/RGvjj/
Can someone advise me as to why the elements are ...
2
votes
2answers
250 views
Actionscript collisions: solving exceptions and strange cases
I have created a collision class to detect collisions using pixels. In my class I've also developed some functions for determining the collsion angle. Based on this I created some examples:
...
2
votes
3answers
689 views
2D Gaming - How to reflect a ball off the bat?
Hi there
I am pretty new to XNA & game dev and am stuck at ball reflection. My ball is reflecting once it hits the bat, but only in one angle, no matter which angle the bat is at.
Here's the ...
2
votes
1answer
1k 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
1answer
2k 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
52 views
ERROR: expected identifier or '(' in xcode ios 5
xcode 4.2 ios 5 single view template
I am very new to this ios format and these new features in xcode
Here is all of my code:
#import "SimpleGame2ViewController.h"
#define kStateRunning 1
#define ...
1
vote
2answers
771 views
ipad safari: disable scrolling, and bounce effect?
I'm working on a browser based app, currently I'm developing and styling for the ipad safari browser.
I'm looking for two things on the ipad: How can I disable vertical scrolling for pages that don't ...
1
vote
3answers
77 views
How to make a sprite bounce, with gravity?
Ok, so I've been following a tutorial about floats, and making a sprite move at a speed
lower than 1 pixel per frame. Pretty easy. Now, I get the following assignment:
Add a gravity influence to ...
1
vote
1answer
98 views
How to create and maintain multiples of the same object in Objective-C?
I'm trying to get multiple Ball objects to form on screen and bounce around. I have it working fine for one, but I am having problems adding more. Ideally, the amount of balls will vary, but for now ...
1
vote
1answer
146 views
How would I nest a shape within a shape in Java?
I am trying to do an assignment involving bouncing shapes within a JPanel. Whenever shapes hit a side, they will bounce off in the other direction. I have already got the bouncing part working for ...
1
vote
1answer
98 views
Explaining VERP
I am in the middle of making a bounce detection program, that reads bounce mails. Our setup is that we are sending out emails, adding a noreply@domain.tl to the sent mails. Some of the recipients does ...
1
vote
1answer
163 views
Problems Implementing Analytics Custom Variables (Bounce Rate goes to zero)
I'm having trouble implementing Google Analytics Custom Variables on my site. The problem is that the bounce rate goes to zero when using them.
I'm using the asynchronous implementation and the split ...
1
vote
2answers
643 views
background color in above (bounce part) of UIWebView
I think this shouldn't be a big problem, but I can't find the solution on my own. As always :p I have an UIWebView that has background color set to clearColor but when I try to scroll down too much I ...
1
vote
2answers
148 views
Is bounce rate a (Google) search engine factor?
I believe someone (perhaps a competitor) is trying to manipulate the bouncing rate of one of my sites. So I'm trying to figure out if this has any impact on search engine ranking, and take appropriate ...
1
vote
2answers
121 views
Framework or design pattern for mailing all users of a webapp
My app takes care of user registration (with the option to receive email announcements), and can easily handle the actual template-based rendering of email for a given user. JavaMail provides the mail ...
1
vote
4answers
625 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
1k 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 ...
1
vote
3answers
270 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
0answers
13 views
UIScrollView bounces half page when at its bounds
I have a scrollview in my app. It works fine, but when it's at its edges (beginning and the last photo), it bounces... bad. If I try to scroll it bounces me back correctly, but if I do it stronger ...
0
votes
0answers
16 views
Wordpress jQuery Quicksand bounce
I'm making a portfolio page which use quicksand plug-in. Here are my codes;
CSS :
/*List-style-type makes sure there aren't any bullets in front of the buttons*/
.load-portfolio {
width: 610px;
...
0
votes
1answer
24 views
UIScrollView : only paging horizontally left, bouncing right
How can I force a UIScrollView in which paging and scrolling are on to only move horizontally left or horizontally both direction(left and right)?
To be clearer, I'd like to allow the user to 'page ...
0
votes
1answer
26 views
HTC sense disables bounce (and other stuff) in ListView\GridView, how to enable it?
Im using a ListActivity with a listview
The problem is that for some reason, on an HTC device, the listview has no baounce
I Tried to do setOverScrollMode(View.OVER_SCROLL_ALWAYS) on the listview ...
0
votes
1answer
41 views
Controlling where “out of office” replies are sent
How do mail servers decide when and where to send "out of office"-type autoreplies?
It seems this is mail server dependent, so some will use a reply-to: address, others the From: and perhaps the ...
0
votes
1answer
105 views
jquery bounce effect not working with floating elements
I am using a which has links which are floated to left. Then when I am giving the bounce effect to the elements on click, when I am clicking them the bounce occurs but it shifts to the right of the ...
0
votes
1answer
41 views
Cleaning bounce mail
I'm wondering whether cleaning the bounce mail is done by parsing the returned message text and creating rules (if contains bla bla bla) or by extracting a certain error code number.
Please clarify.
0
votes
1answer
44 views
Catch email bounce
I will be sending legitimate emails to a list of recipients and some of them are probably obsolete by now.
I wish to know, based on the email bounces, which are obsolete and delete them from the ...
0
votes
1answer
112 views
jQuery bounce variation (bounce around)
I'm struggling to find an addon/plugin for this and its a key part of my project that ive overlooked and now its bitten me.
I need a variation of jQuery bounce which makes a div bounce around a ...
0
votes
0answers
107 views
UIScrollView scrolling issue
I have a scrollview which works perfectly until I dismiss the keyboard. After that it scrolls but not all the way down anymore... I am a bit puzzled.
in viewDidLoad I save the frame so I can reset it ...
0
votes
0answers
174 views
phplist bounce mail issues
This is what i received when the mail failed to sent
Hi. This is the qmail-send program at sg2nlshrout01.shr.prod.sin2.secureserver.net.
I'm afraid I wasn't able to deliver your message to the ...
0
votes
0answers
38 views
create a custom class that animates a view [closed]
I am a beginner trying to develop iphone games, and Im not very familiar with classes in objective c, so it would be really useful if someone could help get me started.
for Example,
I want to make a ...
0
votes
1answer
130 views
jQuery bounce effect not working for links in an un-ordered list
I'm having trouble getting the bounce effect to work. animate() works as long as the anchor tag is relatively positioned. I made a jsfiddle with all of my css and html from my site available here: ...