Skip to main content

Send and Recieve Penn State Webmail using Gmail

Gmail is one of the best and easiest email services available.  It's free, widely used, compatible with nearly everything and has tons of great features.  PSU Webmail on the otherhand, well lets just say it's not quite as good. Laughing  If you're like me, the last thing on your mind after a day of classes and studying is checking the PSU Webmail about important news and other information. I check my Gmail at least once a day but my PSU Webmail... I can't even remember the last time I logged on.
So this is for anyone who woke up two hours early and went to class only to find out that your teacher decided to take the day off. How to setup sending and recieving PSU Webmail through a Gmail Account:

To Recieve Mail from PSU Webmail

  1. Login to Gmail and select settings from the top right corner.
  2. Under settings, open the Accounts and Import tab.
  3. Find the Check Mail using POP3 heading and click the Add POP3 email account.
  4. Enter your PSU Webmail address and click next.
  5. Fill in the username and password, they should be the same as your Penn State Access Account information.
  6. Set POP Server to: email.psu.edu at Port: 995
  7. For security, check always use SSL (this will make it slightly slower, but you'll never notice)
  8. If you want you can have messages labeled to keep them organized.  Once everything looks good click Save.
Webmail account setup
Your settings should look similar to above.
Thats it! Now how to send mail via Gmail!

To Send Mail from Gmail

  1. Login to Gmail and select settings from the top right corner.
  2. Under settings, open the Accounts and Import tab.
  3. Find the Send Mail as heading and click the send mail from another address button.
  4. Enter your Name and PSU Webmail address and click next.
  5. We're going to set it up to send directly through PSU's Webmail system, so select the send mail through psu.edu SMTP Servers radio button.
  6. Set SMTP Server to: authsmtp.psu.edu at Port: 465
  7. Fill in the username and password, they should be the same as your Penn State Access Account information.
  8. For security, check always use SSL then click Add Account
  9. You will have to verify this account before you can send (It would be really bad if it were otherwise!)  Simply follow the instructions that gmail gives you.  If I remember all you need to do is login to Webmail and click a link.
  10. I recommend selecting Reply from the same address the message was sent to under the When receiving a message heading.  Otherwise you might end up replying with an address that your teachers have no clue who it is.
Sending from gmail
Your settings should look similar to this, and now you can send and recieve PSU Webmail through gmail!  Thanks for reading!

Comments

Popular posts from this blog

Kivy vs React-Native for building cross platform mobile apps

I've built three apps now using Kivy and one with React-Native, just wanted to share my thoughts on both. Just a warning, I am strongly biased towards python and this is all based on opinion and experience and is thus worth what you pay for it. I don't claim to be an expert in either of these, just have worked with each for several months.  If something is incorrect I'd love to hear advice. Kivy Demo of one of the apps Pros: Nice to be able to run natively on the desktop WITHOUT a simulator Python is easy to work with Use (almost) any python library Very easy to create custom widgets Kivy properties and data binding just work. Way nicer than React's "state" / flux / redux whatever you want to call it (stupid?).  Native interfaces (pyjnius) and (pyobjc) Runs and feels pretty smooth Cons: Default widget toolkit looks like Android 4.4. Requiring you use your own widgets or a theming kit like KivyMD  if styling bothers you Creating dy

Control Systems in Python - Part 1 - Bode and Step Response

I hate matlab with passion, yet sadly, nearly everyone uses it.  I'm a fan of Python and open source stuff so here's a simple article on how to do some common control systems stuff in Python. First we need to make sure the environment is setup. Install IPython (or you can use any other python shell, but a unicode supported shell is preferred) Install python-control (numpy, scipy) Install sympy These should do if your on Ubuntu/debian: sudo apt - get install python - sympy python-numpy python-scipy python-matplotlib ipython Then you need to install python control, see How to download and install python-control Intro to using Sympy Open ipython and run the following: import sympy from sympy import * sympy.init_printing() s = Symbol('s') Now we can do things like define transfer functions using the symbolic variable s. We can expand the bottom using the .simplify() method and we can do something more complex like... which is really nice because it

Control Systems in Python - Part 2 - Routh Hurwitz

In my last post Control Systems in Python Part 1 , i described how to setup and use Python for doing some basic plotting of transfer functions. One of the biggest benefits of using sympy vs numeric packages like matlab/numpy/scipy is the fact that you can use symbolic variables. This post includes a function for computing the Routh Hurwitz table (Note: It does not work for row's of zeros). Lets do my control systems design homework problem together :) (Warning: I have not verified if this answer is right so please correct me if it’s not!) The Problem The problem is DP 9.11 from Dorf & Bishop’s Modern Control Systems. ISBN 0136024580. Basically we have to design a controller to compensate for a system with a time delay. The controller is: And the system is: First we approximate the exponential term with a 2nd order polynomial using pade(0.4,2) such that: Thus the approximated system is: Using frequency response methods, design the controller so that th