A recent email update from them gave some additional information. I think I am beginning to understand now how to use security, here is what they said:
Use Meteor.publish() and Meteor.subscribe() to control what clients
can see (remove the 'autopublish' package first). Actually you may not
need to do this for a blog.
Use Meteor.methods() and Meteor.call() to define secure server
functions and call them from the client. Then lock down your app by
disabling the "training wheel" methods that let any client do any
write.
Also, they have indicated that this application uses security: https://github.com/meteor/madewith (I will be looking at the code more myself as I a building an app now that I want to make use of some security)
Basically, there are 2 points here, I think.. with the Meteor.publish() / Meteor.subscribe() issue I think they are referring to the fact that if you have a mongo collection that holds data for more than one user, if you use autopublish you are conceivably giving them access to all the data, not just the data that they are authorized to view. I think by determining when to publish updates, within your code, you can control which information gets pushed out to them.
Secondly, the Meteor.methods() and Meteor.call() are something I have started using. Its a way to essentially do something along the lines of a remote procedure call, to me it feels a bit like using reflection in Java as you call the method using a string name of the method, what you can do then, however is call a method directly that exists on the server but you can also define the same method on the client. I believe the method on the client is called first, so the user sees the results immediately, however it then runs on the server. So, if you put in authentication in the server method, and it fails, you can then publish the change back to the client and they will see the data as it actually exists on the server.