pop

How do you host multiple public facing websites on a VPS?

I have moved this question to serverfault where it might be more appropriate. See http://serverfault.com/questions/128329/how-do-you-host-multiple-public-facing-websites-on-a-vps We host about 30 websites using typical shared hosting plans using ASP.NET and SQL 2000/2005/2008. I am now wondering about hosting all of these websites usin...

Fetching email using Ruby on Rails

I need to fetch email from my gmail account using RoR. require 'net/pop' Net::POP3.start('pop.gmail.com', 995, username, password) do |pop| if pop.mails.empty? puts 'No mail.' else #pop.each_mail do |mail| #p mail.header #p mail.pop puts "Mails present" #en...

Linked List pop() function

Consider the following list: [LinkNode * head -- LinkNode * node1 -- LinkNode * node2] I'm creating a stack of FIFO. I Call pop() which I want to pop node1. LinkNode::LinkNode(int numIn) { this->numIn = numIn; next = null; } . . . int LinkNode::pop() { Link * temp = head->next; head = temp->next; int popped =...

Statistics of IMAP vs POP vs Exchange ?

Hello, I'm desperately looking for some statistics about usage of POP versus IMAP versus Exchange-MAPI, especially in professional context. I know IMAP is used for accessing mails from mobile devices with limited bandwidth, whereas POP is the good old standard, and Exchange is more business-oriented. Does someone know the approximate pe...

Integrating Incoming Email Into a php/mysql App

I am looking to create an incoming email daemon switchboard that I can integrate with various remote php/mysql apps. Ideally I want to check the 'to' address to see if it is in a mysql database and if it is, have the email parsed and posted via CURL to a target destination as well as have attachments saved somewhere locally. I will like...

Reading Mail from an Exchange Server with Coldfusion - Possible?

Is reading emails from an Exchange server account possible with Coldfusion? If so, how? ...

pop()ing element

In C, when making a pop function for a stack, do I need to rearrange every index, or would I just be able to remove the top index and everything shift up 1 place on it's own? ...

Read email from incoming mail server(POP)

Hi, I have used an open source code from codeproject to read email from incoming mail server(POP Server). The code can be found at following location: http://www.codeproject.com/KB/IP/Pop3MimeClient.aspx So far it works fine i can read emails. My objective of using this code was to retrieve emails from POP server and process them. M...

"getaddrinfo: Temporary failure in name resolution" in RoR application

Hey I'm trying to retrieve emails from gmail using pop3 to my rails applicaiton. I get the error - "getaddrinfo: Temporary failure in name resolution" when i try to retrieve the email. the weird thing is, it works when i try it at home but not at my university. i'm guessing it has something to do with the internet connection. please ...

Writing a Python mail server with authentication

Hi, I'm trying to write a simple mail server using Python. I found smtpd that can be used as a simple smtp server, but I don't think it supports any form of authentication. For pop or imap, I haven't found anything at all yet. I do know Twisted has some support for both smtp and pop or imap, but I can't find any examples or tutorials...

Remove duplicate elements off a multi-dimension array in php

Hay guys, i have an array contain this data Array ( [id] => Array ( [0] => 1 [1] => 10 [2] => 4 ) [age] => Array ( [0] => 1 [1] => 1 [2] => 2 ) ) Now i want to remove duplicates from the ['age'] and leave the first one ...

Python - How can I fetch emails via POP or IMAP through a proxy?

Neither poplib or imaplib seem to offer proxy support and I couldn't find much info about it despite my google-fu attempts. I'm using python to fetch emails from various imap/pop enabled servers and need to be able to do it through proxies. Ideally, I'd like to be able to do it in python directly but using a wrapper (external program/s...

Why should I convince developers to use port 587 for all SMTP communication?

There is a growing trend to use port 587 for all client to MTA communications. It's in a standards track RFC: http://www.ietf.org/rfc/rfc2476.txt My question is "Why?". Why have 2 instances of a SMTP server running on the same server, if they both do the same thing? What security feature does it provide, besides giving me 2 things to...

how to maintain mail conversion (reply / forward / reply to all like gmail) of email using python pop/imap lib?

I've develop webmail client for any mail server, I want to implement message conversion for it, for example same emails fwd/reply/reply2all should be shown together like gmail does... my question is whats the key to find those emails which are either reply/fwd or related to the original mail.... ...

Dual monitor and browser pop up windows

Hi, I have a question about dual monitor in regards of IE browser pop up windows. The application I have developed launches a pop up window as input form at some point. It is working OK in single monitor environment and pop up gets positioned properly in accordance with JavaScript parameters I set up. I have been informed that when du...

UINavigationController Pop One View

Hello! How can I simply go up one view in a UINavigationController from code? So simple.. Thanks, Christian Stewart ...

Push Next Detail UIView without going back to parent UITableView

I have a Nav controller that starts at a table view. Each row pushes to a detail UIView. I would like to have a "next" button on the Detail UIView that would pop the current view and open the one corresponding to the next row on the parent UITableView using the the same view controller without returning to the TableView. Ideally, it w...

Javascript - Pop a value from array, but not at the end of array

Hi. I have for example this array (each number is singolar, no one duplicate) called pvalue : 1 2 3 15 20 12 14 18 7 8 (sizeof 10). I need for example to pop the value "15", and after this pvalue should be 1 2 3 20 12 14 18 7 8 (sizeof 9). How can do it? the pop() function take the value at the end of the array. I don't want this :) ch...

Firefox Open a new tab instead of a pop window?

I found that in recent version of Firefox, there was add a setting called "Open new windows in a new tab instead". When I keep it on, all the pop windows(Using javascript "window.open" function opened) opened in a new tab, which I realy need opened in a pop window(With settings like "menubar=no" and etc.). Some normal links with "target...

What do Push and Pop mean for Stacks?

long story short my lecturer is crap, and was showing us infix to prefix stacks via an overhead projector and his bigass shadow was blocking everything so i missed the important stuff he was referring to push and pop, push = 0 pop = x he gave an example but i cant see how he gets his answer at all, 2*3/(2-1)+5*(4-1) step 1 Reverse...